Help me get out of this

Tell us what’s happening:

Your code so far


var myVar = 87;

// Only change code below this line;
var myVar = ++87;

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/increment-a-number-with-javascript/

Read instructions:

`i++;`

is the equivalent of

`i = i + 1;`

Now Reset All Code in your challenge and try again.