Question 1  of   20

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

A. 1
B. 4
C. 2
D. 6
E. 5