The following instantiates a two-dimensional array, named matrix, using an 
initialization list.  A 2-dimensional array is an array of
rows, each of which is a 1-dimensional array.  So, this sets
the first row (index 0) to be elements 1 2 3, the second row
(index 1) to be 4 5 6, and so on. 
     int[][] matrix = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
Given the above definition, 
 what would each of the following print
to the command line if run.
- 
System.out.println("matrix[1][1]: " + matrix[1][1]);
- 
System.out.println("matrix[0][2]: " + matrix[0][2]);
- 
for(int i = 0; i < matrix.length; i++) {
	System.out.print(matrix[i][0] + " ");
}