Range Ruby

("a".."e").to_a.reverse_each { |x| puts x }
# e
# d
# c
# b
# a