Menu
×
×
Correct!
Exercise:Loop through the items in the
$colors = array("red", "green", "blue", "yellow");
foreach ($colors as $x) {
echo $x;
}
Not CorrectClick here to try again. Correct!Next ❯$colors = array("red", "green", "blue", "yellow");($colors $x) { echo $x; } |