JavaScript básico - Encuentra un resto en JavaScript

i am having issues with this excersise because it is says that is read only.

const remainder = 0;
remainder = 11 % 3;

Your browser information:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

JavaScript básico - Encuentra un resto en JavaScript

you should change it to another variable

const remainder = 0;
remainder = 11 % 3;

The problem is that you can’t change the value of a constant
so you need to use let or var instead of const
or assign the new value in the same line you are creating remainder