const gameData = () => {
  const question = getRandomNum(minValue, maxValue);
  const answer = isEvenNum(question) ? 'yes' : 'no';
  return {
    question, answer,