const generateQuestionAnswerPair = () => {
  const question = getRandom(1, 100);
  const correctAnswer = isEven(question) ? 'yes' : 'no';
  const data = cons(question, correctAnswer);
  return data;