Stuck even with solution

Tell us what’s happening:

I’m completely stuck. even if I copy/paste the solution it doesn’t work.
Can anybody help?

edit: solved it - using incorrect name.

Your code so far


function countOnline(usersObj) {
// Only change code below this line
let result = 0;
for (let user in obj) {
  if (obj[user].online === true) {
    result++;
  }
}
return result;
// Only change code above this line
}

Your browser information:

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

Challenge: Iterate Through the Keys of an Object with a for…in Statement

Link to the challenge:

where does obj come from? why have you not used the function parameter usersObj?