From da9e6ad0c1abcb16160ffe5a3ba5943aaa835aae Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Wed, 27 Oct 2021 15:52:12 +0200 Subject: [PATCH] fix(curriculum): consts must be initialized --- .../accessing-object-properties-with-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.md index 0631ad6e3c..113765082b 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.md @@ -108,7 +108,7 @@ const testObj = { }; // Only change code below this line -const playerNumber; // Change this line +const playerNumber = 42; // Change this line const player = testObj; // Change this line ```