const getGame = () => {
  const gameQuestion = getRandomNumber(min, max);
  const gameAnswer = isEven(gameQuestion) ? 'yes' : 'no';
  return [gameQuestion, gameAnswer, isRightGameInput];
};