Tell us what’s happening:
Describe your issue in detail here.
I need help, the issue is understanding what is really needed here and how to go about it Your code so far
const remainder = 0;
11 % 3 = 2;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Finding a Remainder in JavaScript
I know coding can be frustrating, but its better if you actually work with those trying to help you. Explain to them why their hints are not helping you so they can adjust how they help. Just saying "
Is not going to help them know how they can help you better, and it may potentially cause others not want to help you in the future
Your code
Right now remainder has the value of 0 right? Thats not what you want, you want remainder to have the value of your second line. You need to put your second line in place of the 0 in your code. After you do that you need to remove the = 2 part.
As the directions say
" Set remainder equal to the remainder of 11 divided by 3 using the remainder (% )"