<?php //FOR each item within the array, "ECHO" out the index ($i) and value of each item. $numbersArray = [1, 2, 3] for($i = 0; $i < count($numbersArray); $i++) { echo "Index of ".$i."= ".$numbersArray[$i]."<br>"; } ?>