Test does not do anything

Tell us what’s happening:

Your code so far


// Change code below this line

var someAdjective;
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/85.0.4183.83 Safari/537.36.

Challenge: Appending Variables to Strings

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

The more information you give us, the more likely we are to be able to help.

The instructions say

Set someAdjective and append it to myStr using the += operator.

but you have not set someAdjective and you appended myStr to it instead of the other way around.

I dunno what is => Tell us what’s happening section.
my question in post

Test does not do anything

i change test no pass
myStr += someAdjective;

I got his question. @Senkora this part is wrong:
someAdjective should be set to a string at least 3 characters long.

1 Like