Help on Uninitialized Variables

Tell us what’s happening:

how do i uninitialized three variable and run the test successfully.
Your code so far


// Initialize these three variables
var a;
var b;
var c;
a = a + 6;
b = b + 15;
c = c + " I am a String!";
// Do not change code below this line

a = a + 1;
b = b + 5;
c = c + " String!";

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables

Hello…

You missed the point

// Do not change code below this line

a = a + 1;
b = b + 5;
c = c + " String!";

You have this code below, and you have to initialize the variables above, with the value that will result in what they’re asking…
So, in the first case, a should be 6… So since you have a = a + 1 below, you should initialize the variable a with the value 5, like a = 5