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