Briefing Zend Knowledge

What is the output of the following code?

What is the output of the following code? function z($x) { return function ($y) use ($x) {
return str_repeat($y, $x); }; }

A.
22333

B.
33222

C.
33322

D.
222333