x
 
<!DOCTYPE html>
<html>
<body>
<pre>
<?php  
$cars = array("brand" => "Ford", "model" => "Mustang");
$cars["color"] = "Red";
//Output the array:
var_dump($cars);
?>
</pre>
</body>
</html>