<!DOCTYPE html>
<html>
<body>
<pre>
<?php
$cars = array("Volvo", "BMW", "Tesla");
$cars[1] = "Ford";
var_dump($cars);
?>
</pre>
</body>
</html>