Please, i need your help!

var a = 5;
var b = 10;
var c = "¡I am a";

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

what’s wrong?

Link to the challenge:

you have an extra chatacter for variable c

I’ve edited your post for readability. 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 (’).

1 Like
`Sorry, i'm noob. I can't found the error in my code, can you show me that?`
- var c = "¡I am a";
?          -
+ var c = "I am a";
1 Like
`Oooooh!!! thanks! I'm Argentinian, and here we use exclametion marks in the beginning and the end of the sentence `

but the challenge description says to use "I am a", so be really careful there

1 Like