int numberArray [9][11];
write a statement that assigns 145 to the first colum of the first row of this array.
write a statement that assigns 18 to the last col of the last row of this array
this is what i have
numberArrray [1][1] = 148;
numberArray [9][11] = 18;