Basic JavaScript - Finding a Remainder in JavaScript

I may be think to much into this but the math isn’t mathing. in nthe video he say 11/3=9 then moves on to the next step but how does that even make sense?

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

const remainder = 0;

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Finding a Remainder in JavaScript

Link to the challenge:

If that’s what is said in the video, then you’re right, it doesn’t make sense.

remainder = 11 % 3
// = 2

The 3 goes into 9 three times so perhaps that’s what the reference to 9 was about?