From c64f97f7e5e5631dfab024f41b29478afd700267 Mon Sep 17 00:00:00 2001 From: varunthejbillebatla <130699599+varunthejbillebatla@users.noreply.github.com> Date: Mon, 19 Jun 2023 12:58:57 +0530 Subject: [PATCH] Update challenge-2-solution.js --- code-challenges/lesson-3/challenge-2-solution.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-challenges/lesson-3/challenge-2-solution.js b/code-challenges/lesson-3/challenge-2-solution.js index 8d21f29..5d64a9b 100644 --- a/code-challenges/lesson-3/challenge-2-solution.js +++ b/code-challenges/lesson-3/challenge-2-solution.js @@ -5,7 +5,7 @@ There are two things wrong with this line 2. We should be using `let` here because later in the code, we re-assign the value of the variable */ -const some Number = 20; +const someNumber = 20; // 3. This line is missing a semi-colon at the end someNumber = 50