Quiz 1

<?php
function funky(&$o) {
    $o = null;
}
$x = [];
funky($x);
var_dump($x);
Output
NULL