There are two main ways to make an array:
This one, for an empty array:
int[] array = new int[n]; // "n" being the number of spaces to allocate in the array
And this one, for an initialized array:
int[] array = {1,2,3,4 ...};
You can also make multidimensional arrays, like this:
int[][] array2d = new int[x][y]; // "x" and "y" specify the dimensions
int[][] array2d = { {1,2,3 ...}, {4,5,6 ...} ...};