ok hello
so the remainder sign in javascript is %.
you didn’t put it in your code.
regardless, there is another main problem.
you should set the variable which in this case is remainder to be equal to the remainder of 11 and 3.
Therefore, you have to write:
var remainder = 11 % 3;
As I noted you have to use the remainder sign “%” and you have to set all of this equal to the variable.
Good luck