Array Ruby

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