export const makeGame = () => {
  const question = getRandomNum();
  const rightAnswer = isEven(question) ? 'yes' : 'no';
  return {
    question,