my @array = map { 'foo' => $_ }, 1..3; # ok my @array = map { $_ => 'foo' }, 1..3; # not ok: 'syntax error at ..., near "},"'