Have a look at this. It may give you a push in the right direction
byte Array1[3][2] =
{
{1,2},
{3,4},
{5,6}
};
byte Array2[3][2] =
{
{11,22},
{33,44},
{55,66}
};
void setup()
{
Serial.begin(9600);
showArray(Array1);
Serial.println();
showArray(Array2);
}
void loop()
{
}
void showArray(byte passedArray[3][2])
{
for (byte row =0;row < 3;row++)
{
for (byte col =0;col < 2;col++)
{
Serial.println(passedArray[row][col]);
}
}
}