PHP - Array Functions
What will be the output of the following PHP code?
$numbers = [1, 2, 3];
array_walk($numbers, function(&$value) {
$value *= 2;
});
print_r($numbers);