const even = () => {
  const question = randomNumber(1, 99);
  const trueAnswer = isEven(question) ? 'yes' : 'no';
  return [question, trueAnswer];
};