Start your All-Access Pass to unlock this challenge
Read the docs about the array_reverse() built-in function and try to guess what the next code will output:
$array = array_reverse(array('π', 'π', 'π', 'π'), true); echo $array[2];
π
π
π
Nothing, it will throw an error