What you have above is not legal JS. If I told you to set remainder equal to the sum of 11 + 3 then you would do:
const remainder = 11 + 3;
Instead, the instructions are asking you to set remainder to the remainder of 11 divided by 3. You can get the remainder of dividing two numbers using the remainder operator, which is %.
Does this give you enough information to solve it?