So I\'m a bit confused about how to use a 2D Array in Java if you only declare the number of rows at first. For example:
int[][] x = new int[5][]; But ho
int[][] x = new int[5][];