How can I visualize the array that I created in the code with brackets? e.g for 3x3 array:
 [  ]    [  ]    [  ]   
 [  ]    [  ]    [  ]   
 [  ]    [  ]    [  ]  
I tried a very simply code but the columns were below the others
for (int i=0;i<Columns;i++){
       for (int j=0;j<Rows;j++){
          System.out.println("[  ]");
       }
   System.out.println(" ");
}
 
     
     
    