An array but it has columns and rows!int row = 3;int col = 3;int[ ][ ] example = new int [row][col];It will be something like this!1 2 34 5 67 8 9