An array that uses multiple indices to access its elements. Said to be 'rectangular' because each "row" is the same size
Two-dimensional array:
<baseType>[,] <name>;
Four-dimensional array:
<baseType>[,,,]<name>;
Arrays of more dimensions simple require more commas
EX.) double[,] hillHeight = { {1,2,3,4}, {2,3,4,5}, {3,4,5,6} };
Although an array can have as many as 32 dimensions, it is rare to have more than three.
NOTE: When you add dimensions to an array, the total storage needed by the array increases considerably, so use multidimensional arrays with care.