const createEvenGame = () => {
  const question = makeRandom(1, 100);
  const correctAnswer = (checkIfEven(question)) ? 'yes' : 'no';
  const pair = cons(question, correctAnswer);
  return pair;