const generateGameSet = () => {
  const num = Math.round(Math.random() * 30);
  const answer = isEven(num) ? 'yes' : 'no';
  return [num, answer];
};