Map to uppercase
words = %w[hello world] # Another collection upper = words.map {|x| x.upcase } # Map to uppercase