--- id: 5dbbb1466ef5fe3a704f849c title: Part 134 challengeType: 0 --- # --description-- The only thing left to add is a mini-game easter egg (a hidden feature). Add a new function called `easterEgg` that calls the `update` function and passes in `locations[7]` as an argument. # --hints-- See description above for instructions. ```js assert( easterEgg .toString() .replace(/\s/g, '') .match(/functioneasterEgg\(\)\{(return)?update\(locations\[7\]\)\;?}/) ); ``` # --seed-- ## --before-user-code-- ```html