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