Change array elements with collect!
array = ['a', 'b', 'c'] array.collect! { |x| x.upcase } p array # => ["A", "B", "C"]