Menu
×
×
Correct!
Exercise:Use the correct function to output the number of items in an array.
$fruits = array("Apple", "Banana", "Orange");
echo @(14);
$fruits = array("Apple", "Banana", "Orange");
echo count($fruits);
Not CorrectClick here to try again. Correct!Next ❯ |