@names = ("Sally", "John", "Sue", "Ed", "Lester"); print("Let's use a FOR loop!:\n"); for ($count = 0; $count < 5; $count++) { print ($names[$count]); print(" \n"); } print(" \nLet's use a WHILE loop!:\n"); $count = 0; while ($count < 5) { print($names[$count]); print(" \n"); $count++; } print(" \nThey look exactly the same!\n");