MyVar++ Challenge

Hey Awesome People, I’ve fallen victim to the struggle of self-taught.
Behold I seek help!!!
Okay, on a serious note, I don’t know what I’m doing wrong here.
It keeps telling me “myVar +1 needs to be changed” , Please send help.
Thanks

var myVar = 87;

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

not sure why; but the space after myVar++ is causing the issue.

var myVar = 87;

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

(ref:https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/increment-a-number-with-javascript )

@pjonp, thank you. The space was causing the issue. I thought an empty space means nothing in JavaScript? :exploding_head: