const getQuestionAndAnswer = () => {
  const question = getRandomInt(1, 20);
  const answer = isEven(question) ? 'yes' : 'no';

  return {