PHP - Array Functions
What is the output of the following PHP code?
$arr = [1, 2, 3, 4, 5]; $result = array_filter($arr, fn($n) => $n % 2 === 0); print_r($result);
