const makeGameData = () => {
  const question = getRandom(0, 100);
  const answer = isEven(question) ? 'yes' : 'no';

  return cons(question, answer);