Hola ando atrapado aqui no se donde esta el error

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

Your code so far

// Only change code below this line
var a;
a = 5
var b;
b = 10
var c;
c = "im a"
// 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 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36

Challenge: Understanding Uninitialized Variables

Link to the challenge:

HI @mr.zelta !

Welcome to the forum!

Your issues is here

Please reread the directions for the correct string they want you to use

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

Once you fix that, then it will pass

ya lo cambie pero ni modo

Can I see your new code?
Please it post it here

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

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

Your code so far

// Only change code below this line
var a;
a = 5
var b;
b = 10
var c = "i am a";
c = "i am a";



// 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 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36

Challenge: Understanding Uninitialized Variables

Link to the challenge:

Two issues.

No.1:
You already assigned a value here

so there is no reason to have this line here.
Delete this

No.2:
Look at what you wrote

Now, look at the correct answer

Hint: capitalization matters.
It needs to be exact for it to be correct

ya trate de todas la maneras y el problema es c no logro avanzar

Please post your new code here so I can see what you have tried lately.

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