array = ["a", "b", "c"] array.map { |string| string.upcase } # ["A", "B", "C"]
array = [0, 1, 2] array.map { |number| number }