Alphabetize method to make life easy

def alphabetize(arr, rev = false)
  arr.sort!
  if rev == true
  arr.reverse!
  else
  return arr
end
end