Learn Basic JavaScript by Building a Role Playing Game - Step 107

Tell us what’s happening:

Hello. There is a problem in my code because it isn’t passing. Please help me.

function sellWeapon() {
    if (inventory.length > 1) {
        gold += 15;
        goldText.innerText = gold;
        let currentWeapon = inventory.shift();
        currentWeapon += ".";
        text.innerText = "You sold a " + currentWeapon;
    }
}

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function sellWeapon() {
    if (inventory.length > 1) {
        gold += 15;
        goldText.innerText = gold;
        let currentWeapon = inventory.shift();
        currentWeapon += ".";
        text.innerText = "You sold a " + currentWeapon;
    }
}



// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 107

Hi @Dennis-code153

After your currentWeapon , use the concatenation operator to set text.innerText to the string "You sold a " , then currentWeapon , then the string "." .

Ignore the hint message. The period needs to go after the currentWeapon variable when you assign the string.

So all on one line:
"You sold a " , then currentWeapon , then the string "."

Happy coding

1 Like

Thanks. It is a real solution of the challenge.

1 Like