const getQuestionAndAnswer = () => {
  const question = getRandomNumber(1, 30);
  const answer = isEven(question) ? 'yes' : 'no';
  return [question, answer];
};