<?php
$cars = ["Volvo", "BMW", "Toyota"];
$arrlength = count($cars);

for ($x = 0; $x < $arrlength; $x++) {
    echo $cars[$x];
    echo "<br>";
}
?>