Multidimensional Arrays Question

ok, so I am a little bit lazy, and I kind of need the answer quickish.

i have a multidimensional array of images(dont ask why) laid out like:

EncodedImage[][] eImg = new EncodedImage[4][10];

eImg[0][0] = imgLoader.image1();
eImg[0][1] = imgLoader.image2();
eImg[0][2] = imgLoader.image3();

eImg[1][0] = imgLoader.image3();
eImg[1][1] = imgLoader.image2();
eImg[1][2] = imgLoader.image3();

now i have a constructor which accepts an array of these images like

public Construct( EncodedImage[] enImg)

so my question is, can i use my multidimensional array to get only the array of images from say EncodedImage[0];
like could i do

Construct cons = new Construct( eImg[0] );

to get enImage[] to be the array of the images eImg[0][0], eImg[0][1], eImg[0][2]??

Tried to explain as best i could. Any advice would be appreciated