Change array elements with map!
array = ['a', 'b', 'c'] array.map! { |x| x.downcase } p array # => ["a", "b", "c"]