Perl検定 問題 25

以下のプログラムで"Match!"と表示できない選択肢はどれでしょうか?

my $str = 'This string is aa';

if ($str =~ 「正規表現」) {
  print "Match
";
}

1. /^This/

2. /a[abc]/

3. aa$

4. /a{3}/