Skip to main content
✏️ Code CompletionPH PHP Hard+35 XP

Array Map

Complete the array_map call to double values.

✏️ Fill in the blank
$doubled = array_map(fn($n) => $n * 2, ___);

✏️ Type the missing code: