fix(curriculum): consts must be initialized

This commit is contained in:
Oliver Eyton-Williams
2021-10-27 15:52:12 +02:00
committed by Mrugesh Mohapatra
parent 1ca335794c
commit da9e6ad0c1

View File

@ -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
```