PHP - Arrays
Given two arrays:
Which PHP code correctly creates an associative array and then merges it with
$keys = ['name', 'age', 'city'];$values = ['Alice', 30, 'Paris'];Which PHP code correctly creates an associative array and then merges it with
['country' => 'France']?