const generateGameData = () => {
  const question = randomIntGenerator(1, 100);
  const rightAnswer = isEven(question) ? 'yes' : 'no';
  const gameItSelf = cons(question, rightAnswer);
  return gameItSelf;