Thank You
public class TryAtGrid { public static void main(String[] args) char [][] a = new char [10][10]; //Thought you could add in the array by //a[1][4]=a; //a[2][1]=b; //a[2][4]=' '; ect.. but has not worked for me int row, column; for (row = 0; row < 10; row++) { for (column = 0; column < 10; column++) System.outprint(a[row][column]); System.out.println(); } }