diff --git a/index.js b/index.js index 07a4c0520..02cb11315 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,9 @@ - +let num1 = 31; +let num2 = 2; +let multiply = num1 * num2; +let random = Math.floor(Math.random())+1; +let num3 = 14; +let num4 = 5; +let mod = num3 % num4; +let max = Math.max(11, 6, 15, 20); // Write your code here \ No newline at end of file