use warnings; use strict; my @holdings = qw( green blue yellow ); for (my $count = 2 ; $count >= 0 ; $count-- ) { my $tempvar = $holdings[$count]; print "$tempvar"; } print "\n"; __END__ yellowbluegreen