Suppose you have the following function prototype and variable declaration: public void goop(int[ ] z) int[ ] x = new int[10]; Which is the correct way to call the goop method with x as the argument:

(A) goop(x);
(B) goop(x[ ]);
(C) goop(x[10]);
(D) goop(&x);
(E) goop(&x[ ]);