What does the following code print out?
function arrayPrint($array) { echo implode(' ', $array); } $arrayA = [1, 2, 3]; $arrayB = $arrayA; $arrayB[1] = 0; arrayPrint($arrayA);
Question Take the following HTML form.