This is an unusual problem I have: I've created a 2d int array with dimensions of 3X3, no parameters and when I try to print it out on the screen it displays something like this : [[I@49d67b41. Any suggestions?
public static void main (String[]  args) {
    System.out.println(test2());
}
static int [][] test2 () {
    int [][] l = new int[3][3];
    return l;
}
 
     
     
     
    