<?php $final = array(); $names = ['James', 'Mike', 'Liam', 'Shantel', 'Harry']; $colors = ['Green', 'Blue', 'Yellow', 'Purple', 'Red']; foreach($names as $i => $key) { $final[$key] = $colors[$i]; } var_dump($final);
You have javascript disabled. You will not be able to edit any code.