Basic JavaScript: Appending Variables to Strings

Tell us what’s happening:
I’m am positive that this is the correct answer for the lesson, however I keep getting this message returned:

// running tests You should append

someAdjective

to

myStr

using the

+=

operator. // tests completed

Please help

Your code so far


// Change code below this line

var someAdjective = "amazing!";
var myStr = "Learning to code is ";
someAdjective += myStr;

Your browser information:

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

Challenge: Appending Variables to Strings

Link to the challenge:

someAdjective is now "amazing!Learning to code is "

myStr didn’t change

are you really sure that’s the correct answer?

I think I know what I did wrong. I placed the appendment in the wrong order. Thanks for replying, I would’ve gone crazy not seeing that.

Corret answer was:
var someAdjective = “amazing!”;
var myStr = "Learning to code is "
myStr += someAdjective;