All right! Time to break out our iterators to go through the user's text.
letters = ['a', 'b', 'c', 'd'] letters.each do |letter| print letter end
The example above just serves as a reminder of using .each on the letters array.
.each
letters