--- id: 5d6653d5e0696bdec46938da title: Part 28 challengeType: 0 --- # --description-- Below the list of `const` variables, create a new `const` variable called `locations`. Set it to equal an empty array. This will be used to store all the data for the locations in the game. # --hints-- See description above for instructions. ```js assert(Array.isArray(locations) && locations.length === 0); ``` # --seed-- ## --before-user-code-- ```html