2-D Arrays ...
It is possible to define arrays with multiple dimensions, int 2DArray[10][10];
To reference elements in this array we use two sets of square brackets
The above statement assigns 20 to the element at position 3, 4. All array dimensions have zero based indexes.