Take a look at the following code...
<?php
function myFunction($a){
$a++;
}
$b = 1;
myFunction($b);
?>
What code do you need to replace so that $b has the value 2 at the end of the script?
Line 02: Replace $a with &$a
Correct:
Line 02: Replace $a with &$a