We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed2175a commit 023cef4Copy full SHA for 023cef4
src/games/brainEven.js
@@ -3,7 +3,7 @@ import theMotor from "../index.js";
3
const getRandomNum = (min = 1, max = 99) => Math.floor(Math.random() * (max - min + 1) + min);
4
const isEven = (number) => number % 2 === 0;
5
6
-const description = 'Answer "yes" if number odd otherwise answer "no"';
+const description = 'Answer "yes" if the number is even, otherwise answer "no".';
7
const genRounds = ()=>{
8
const minNum = 1;
9
const maxNum = 100;
0 commit comments