For this question, refer to the following lines of code:

int[][] numbers = new int[10][20];
numbers[2][3] = 3;

What element has been set to 3?

The fourth element in the third row.
  • The second element in the third row.
  • The third element in the second row.
  • The third element in the fourth row.

Remember indexing for arrays starts at 0