‘Let’ is another way to declare your variable. Similar to ‘var’.
Below I have coded a simple “for” Loop. Copy and Paste it into a blank FreeCodeCamp terminal to see it work. It will start at 86 because you declared your ‘myVar’ to equal 86. It will then add ‘1’ to 86 until it reaches 100. It will also print out all the values to your console so you can see and understand how it works. And to solve your problem, code ‘myVar’ to look like ‘i++’. ‘i’ is my variable and ‘++’ is telling Javascript to add ‘1’ to my variable. Hope this helps, let me know if you have any questions. Brad