Quiz Question 1 of 5
Reference the PHP Docs to determine what the combined array ($results) will look like when you used the array_combine function on the following arrays.
$name = ['hampton', 'charley'];
$fav_food = ['sushi', 'mac and cheese'];
$result = array_combine($name, $fav_food);
Choose the correct answer below: