function getMinQuote() {
  return 1;
}

function getMaxQuote() {
  return 31;
}

function getRandomQuote() {
  low = getMinQuote();
  high = getMaxQuote();
  num = Math.round(Math.random() * (high-low)) + low;
  return (num);
}
