Question: 29 (ID:652)
ID: 652
What should go in the missing line ????? below to produce the output shown?
$array_one = array(1,2,3,4,5);
$array_two = array('A', 'B', 'C', 'D', 'E');
/* ????? */
print_r($array_three);
/* Result:
Array
(
[5] => A
[4] => B
[3] => C
[2] => D
[1] => E
)
*/