I am not understanding what's wong

Hey,

So with the increment operation, you don’t need to write out the entire redefining of the variable. The (++) is kind of a shortcut that does it all for you. So your solution should look like this:

myVar++

Hope that helps!


I did as you said but still didn’t work

1 Like

Make sure you’re reading the instructions carefully

The entire line becomes i++;, eliminating the need for the equal sign.

1 Like

You’re whole code should be

var myVar = 87;

// Only change code below this line
myVar++;