Tell us what’s happening:
Hello! I’m trying to get past this exercise without success, but it keeps giving me the same response.
// Only change code below this line
var a=5;
var b=10;
var c=“I am a”;
// Only change code above this line
a = 5 + 1;
b = 10 + 5;
c = c + " String!";
Response: // running tests
4. You should not change code below the specified comment.
// tests completed
Any idea how I can solve it?
Your code so far
// Only change code below this line
var a=5;
var b=10;
var c="I am a";
// Only change code above this line
a = 5 + 1;
b = 10 + 5;
c = c + " String!";
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Understanding Uninitialized Variables