const game = () => {
  const guess = getRandomInt(100);
  const question = String(guess);
  const answer = isPrime(guess) ? 'yes' : 'no';