From 648a4482c3ff3f9ad99889e5f2140bc0359b609b Mon Sep 17 00:00:00 2001 From: Cayla Horsey Date: Mon, 6 May 2024 11:49:25 -0400 Subject: [PATCH] Complete lab --- index.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 07a4c0520..d6978dddc 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,13 @@ +// Write your code here +let num1 = 31; +let num2 = 2; +let multiply = num1 * num2; + +let random = Math.floor(Math.random() * 10) + 1; + +let num3 = 10; +let num4 = 6; +let mod = num3 % num4; + +let max = Math.max(1, 2, 3, 4, 5, 20); -// Write your code here \ No newline at end of file