diff --git a/03-lets-do-some-math/math.js b/03-lets-do-some-math/math.js index ec2f4a2..4c44a24 100644 --- a/03-lets-do-some-math/math.js +++ b/03-lets-do-some-math/math.js @@ -5,10 +5,10 @@ * - Do not manually enter the answers to the equations. For example, `const a = 9` would be incorrect as 9 is the answer to the equation you're being asked to write out */ -const a = "one plus eight" -const b = "22 times three" -const c = "the *remainder* of 5/4" -const d = "the variable 'a' minus 17" -const e = "the sum of the previous four variables" +const a = 1 + 8 +const b = 22 * 3 +const c = 5 % 4 +const d = a - 17 +const e = a + b + c + d module.exports = {a, b, c, d, e}