export const questionEven = () => {
  const question = getRandomInt(1, 1000);
  const rightAnswer = isEven(question) ? 'yes' : 'no';
  return [question, rightAnswer];
};