Input
Output
<?php $score = [100, 221, 59, 54]; for ($i = 0; $i < count($score); $i++) { echo "Element[" . $i . "] = " . $score[$i] . "\n"; } ?>