What is the output of the following code int[][] a = new int[2][]; int i; for (i = 0; i < a.length; i++) { System.out.println(a[i]); }