Tell us what’s happening:
ok so here is the code i got finally. and it went through. can anyone explain why it needed to be adjectives and such?? i know its part of the programming and all. but like i have been bad at english grammar junk for as long as i can remember. so was wondering why did the code go through like it did??
Your code so far
// Example
var anAdjective = "awesome!";
var ourStr = "freeCodeCamp is ";
ourStr += anAdjective;
// Only change code below this line
var someAdjective = "awesome!";
var myStr = "Learning to code is ";
myStr += someAdjective;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Firefox/68.0
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/appending-variables-to-strings/