Perl検定 問題 17

以下のプログラムを実行すると何が出力されますか?

my $i = 0;
while ($i < 5) {
    $i++;
}
print $i;

1. 0

2. 1

3. 4

4. 5