Basic JavaScript - Finding a Remainder in JavaScript

Tell us what’s happening:

l write a line of code ,its this one “let remainder = 11%3;”
then it was indicated that the remainder should be equal to 2
so i dont know where i went wrong

Your code so far

const remainder = 0;
var remainder = 11 % 3; //remainder gets the value 2

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.95 Safari/537.36

Challenge Information:

Basic JavaScript - Finding a Remainder in JavaScript

Hi. You are only required to work on the 1 line of code given here, you are asked to change the value of “remainder”.