Range Ruby

range = "a".."e"         #creates "a", "b", "c", "d", "e"
puts range.max           #prints "e"