Hello, I have a problem here. did I make anything wrong?
Your code so far
// Only change code below this line
var a;
var b;
var c;
a = 5;
b = 10;
c = "I am a";
a = a + 1;
b = b + a -1;
c = c + " String!";
// Only change code above this line
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.35
Challenge: Basic JavaScript - Understanding Uninitialized Variables
Link to the challenge: