# File lib/heckle.rb, line 636
  def rand_range
    min = rand(50)
    max = min + rand(50)
    min..max
  end