my @array = (1..15); foreach (@array) { print $_ if ($_ > 5 && $_ < 12); } print join (", ", @array);