String Ruby

puts "hello".tr("aeiou", "AEIOU")  # => "hEllO": capitalize vowels. Also tr!
puts "hello".tr("aeiou", " ")      # => "h ll ": convert vowels to spaces