--- id: 5d6f79667c812010bf3327d6 title: Part 61 challengeType: 0 --- # --description-- The value of `currentWeapon` corresponds to an index in the `weapons` array. The player starts with a stick since `currentWeapon` starts at 0 and `weapons[0]` is the "stick" weapon. In the `buyWeapon` function, add one to `currentWeapon` since the user is buying the next weapon in the `weapons` array. # --hints-- See description above for instructions. ```js (currentWeapon = 0), buyWeapon(), assert(currentWeapon === 1); ``` # --seed-- ## --before-user-code-- ```html