my @array = ('one', 'two', '', 'four', 'five'); #### my @array = qw(one two NULL four five); #### my @array = qw(one two), '', qw(four five);