@the_days = ('whatever','values','go','here'); foreach $eachday (@the_days) { print "$eachday\n"; } for $eachday (@the_days) { print "$eachday\n"; } for (@the_days) { print "$_\n"; } print "$_\n" for @the_days;