Whats wrong this aint working -HElp!

Tell us what’s happening:

Your code so far


// Only change code below this line
var a = 6;
var b = 15;
var c = "I am a String !";
// Only change code above this line

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66.

Challenge: Understanding Uninitialized Variables

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 tell you exactly what values to initialize the variables with. You are not initializing variables a, b, and c with those values. Why are you using other values?

Hi @Flamez!

Welcome to the forum!

What you did was plug in 5 here

and take the value and assign that here

So, you don’t need to overcomplicate it.

FCC instructions
Initialize the three variables a , b , and c with 5 , 10 , and "I am a"

When you initialize those variables with the correct values then the test will pass.