Perl検定 問題 15

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

@array = (1, 2, 3, 4);
print @array[1];

1. 1

2. 2

3. 3

4. 4