$numericArray = array("Apple", "Banana", "Orange");

foreach ($numericArray as $value) {
    echo $value . "<br>";
}