my @choices = [qw/one two three four/]; my $me = $mw->MatchEntry(-choices => @choices); #### my @choices = (qw/one two three four/); my $me = $mw->MatchEntry(-choices => \@choices); #### my $choices = [qw/one two three four/]; my $me = $mw->MatchEntry(-choices => \@$choices);