<html>
<body>
<pre>
$cars = array("brand" => "Ford", "model" => "Mustang");
$cars["color"] = "Red";
//Output the array:
var_dump($cars);
</pre>
</body>
</html>
array(3) { ["brand"]=> string(4) "Ford" ["model"]=> string(7) "Mustang" ["color"]=> string(3) "Red" }