Level 60
You have to use long form, here the code
https://github.com/laravel/framework/blob/8.x/src/Illuminate/Collections/Collection.php#L636
so basically
$array = ['Alex', 'JOHN'];
$keys = array_keys($array);
array_map('strtolower', $array, $keys);
but strtolower accepts only one parameter