const createPrimeGame = () => {
  const question = makeRandom(1, 200);
  const correctAnswer = (checkIfPrime(question)) ? 'yes' : 'no';
  const pair = cons(question, correctAnswer);
  return pair;