my @words = qw[ the quick brown fox ]; foreach (@words) { ucfirst($_); }; Useless use of ucfirst in void context at ... #### foreach (@words) { $_ = ucfirst($_); } #### $_ = ucfirst for @words; print for @words; The Quick Brown Fox