Basic JavaScript - Increment a Number with JavaScript

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

I don’t know how to do about this step.
This was the instructions below :

Change the code to use the ++ operator on myVar.

Can someone please help me

let myVar = 87;

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

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 11; SM-A705FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Mobile Safari/537.36

Challenge: Basic JavaScript - Increment a Number with JavaScript

Link to the challenge:

Look at the example in the instructions again:

i++;

is the equivalent of

i = i + 1;

This means you can change the line i = i + 1; to i++; as they do the same thing.

So how can you change the line myVar = myVar + 1; to use the ++ operator?

Thanks for your help