Question 1  of   20

What is the result of the following code fragment? int[][] array = new int[][] { new int[] {1,2,3}, new int[] {4,5,6}, new int[] {7,8,9} }; int x = array[1][2]; Console.WriteLine(x);

A. 6
B. Error
C. 9
D. 3
E. 5