Using const sets a variable to a constant value and doesnt allow you to change it. So how can you change it?
Use the let keyword instead of const .
The value let keyword , once initialized , can be changed and used as much as you need.
Note:- You can also use the var keyword but it is not recommended as the let keyword , introduced in es6 replaces var for a lot of reasons. This is a good resource to understand the difference.
You don’t need to add any additional lines of code. You are tasked with setting the remainder equal to the remainder of 11 divided by 3 using the remainder ( % ) operator