I am trying to change the code ++ to get the value of 88 but I’m lost. Please help me.
Your code so far
var myVar = 87;
// Only change code below this line
myVar = myVar + 1;
**Your browser information:**
User Agent is: <code>Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36</code>.
**Link to the challenge:**
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/increment-a-number-with-javascript
That is what I am trying to say in other words.
Also, the expected result for myVar is to be 88:
If you look at the test messages below the green buttons:
You almost write the right code, the only problem is that you left the myVar = myVar + 1; unchanged. You need to replace that line with the code that uses the equivalent myVar++;