PHP - Array Functions
What will be the output of the following PHP code?
$nums = [5, 10, 15];
$result = array_reduce($nums, function($carry, $item) {
return $carry * $item;
}, 1);
echo $result;