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