const evenGameCondition = () => {
  const randomInt = getRandomInt(1, 99);
  const question = `${randomInt}`;
  const answer = checkEven(randomInt);
  return [question, answer];