In mathematics, a multidimensional array is known as a nested array.
Below is from Microsoft's C# definition: Source:
int[,] numbers = new int[3, 2] { {1, 2}, {3, 4}, {5, 6} };
string[,] siblings = new string[2, 2] { {"Mike","Amy"}, {"Mary","Albert"} };