diff --git a/index.js b/index.js index 07a4c0520..1fe38e9a7 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,21 @@ +// is an equation whose multiplied results will equal 62 -// Write your code here \ No newline at end of file +let num1 = 2; +let num2 = 31; +let multiply = num1 * num2; + +// generates a random integer greater than 0 + +let random = Math.floor(Math.random()) + 1; + +// is an equation that calculates a remainder that is equal to 4 + +let num3 = 18; +let num4 = 7; +let mod = num3 % num4; + +function calculateRemainder() {} + +// will return 20 as the highest number in the set + +let max = Math.max(1, 5, 10, 15, 20);