What elements will the @a array consist of? $_ = ' a b c '; my @a = split();
', 'a', ' ', 'b', ' ', 'c', ' '
', 'a', 'b', 'c', ''
undef, 'a', 'b', 'c', undef
'a', 'b', 'c'