Perl検定 問題 26

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

my $str = 'aa aaa';
$str =~ s/a/b/;
print $str;

1. ba aaa

2. bb aaa

3. bb bbb

4. aa aaa