PHP question about loops #1

Choose the option which can replace ??? in order to print 951.

$array = [1, 3, 5, 7, 9];
for (???) {
    echo $array[$i - 1];
}
Sign in in order to be able to answer question.