--- id: 5d71c20f848f6914ab898980 title: Part 83 challengeType: 0 --- # --description-- Now use the `+=` operator to add to `text.innerText`. Add the string " In your inventory you have: " (with spaces at the beginning and end). Then add the `inventory` variable to the end of the string. # --hints-- See description above for instructions. ```js (inventory = ['potato', 'carrot']), sellWeapon(), assert( text.innerText === 'You sold a potato. In your inventory you have: carrot' ); ``` # --seed-- ## --before-user-code-- ```html