Initialize variable c

Tell us what’s happening:
Describe your issue in detail here.

Please can anyone help with this stage!
I cannot proceed out of this stage after initializing the three variable a, b and c.
There is something wrong with my code but i cannot just figure it out

Your code so far

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

a = 5 + 1;
b = 10 + 5;
c = c + "string";

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0

Challenge: Understanding Uninitialized Variables

Link to the challenge:

HI @achiemeke !

I would reset the lesson.

Make sure to only edit the code in the top part here

Do not touch code anywhere else.

Make sure to assign the correct value for a,b,c.

These values are incorrect

Here are the correct ones.
Initialize the three variables a , b , and c with 5 , 10 , and "I am a"

Hope that helps!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.