I recently started mutltidimensional int arrays in java. Before that one dimensional arrays had sufficed.
To print those I used System.out.println(Arrays.toString(myarray));
But it won't work with multi dimensional arrays, it does the same thing as it does when you try to print a one dimensional array directly only many times.
Arrays.toString()Arrays.deepToString()is better though