Write a program that creates a square array of size n x n, where n is an integer constant. Fill the array with zeros. Put the number 10 around the edges (all borders). Set location (8,2) to 99 (if and only if the size is bigger than 8). Print out the whole array (printf will give nicer spacing). You can set the size using something like: private static final int SIZE = 10; private static int[][] map = new int[SIZE][SIZE]; To print out the array, use the same code from the TicTacToe.java program, specifically, the method "printBoard()". <---- added at the end of this page It uses nested for loops to go through each row and column and it prints out the content of each element with a spacing of 3 (using printf). Obviously you'll have to change the name of the array. Recall: Java handles 2D arrays by accessing the ROW first, then the COL. e.g. int n = map[row][col] This may not be germane to this particular program, but it is useful to remember. Output: SIZE=10 10 10 10 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 10 10 0 99 0 0 0 0 0 0 10 10 10 10 10 10 10 10 10 10 10 SIZE=17 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 99 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 static void printBoard() { for(int row=0; row