--- id: 5d71bdca848f6914ab89897e title: Part 81 challengeType: 0 --- # --description-- Use the `shift()` method on the `inventory` array to remove the first element and return that removed element. Set `currentWeapon` to equal returned element. Here is an example: ```js let arr = ["one", "two", "three"]; let firstElement = arr.shift(); // arr now equals ["two", "three"] and firstElement now equals "one" ``` # --hints-- See description above for instructions. ```js assert( code.match( /if\s*\(\s*inventory\.length\s*\>\s*1\s*\)\s*\{\s*(.\s*)*let\s*currentWeapon\s*\=\s*inventory\.shift\(\s*\)\;?/ ) ); ``` # --seed-- ## --before-user-code-- ```html