myVar = myVar - 1; should be changed

var myVar = 87;

// Only change code below this line

var myVar = 87;

myVar = ++myVar;

I’m not sure what you are asking, can you rephrase your question?

1 Like

When using ++ or -- you don’t need the assignment operator =.

Also double check whether you should be incrementing or decrementing the value.

var = myVar = 87;

you should not have repeated that line.