Range Ruby

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