--- id: 5d71bfdf848f6914ab89897f title: Part 82 challengeType: 0 --- # --description-- After the line that creates the `currentWeapon` variable, set `text.innerText` to equal `"You sold a " + currentWeapon + "."` # --hints-- See description above for instructions. ```js (inventory = ['potato', 'carrot']), sellWeapon(), assert(text.innerText === 'You sold a potato.' && inventory[0] === 'carrot'); ``` # --seed-- ## --before-user-code-- ```html