You pass an array the same as you pass any other variable to a method.
growBox(box,...); // pass the box array to the growBox method

int[][] growBox(char[][][] anArray, ....) {



Compile...