Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #2 of 2


Q: 

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];

userVoice