"apple", "b" => "ball", "c" => "cat"); $array2 = array("x" => "xylophone", "y" => "yacht", "z" => "zebra"); // Merging the two associative arrays $result = array_merge($array1, $array2); print_r($result); ?>