Continue having issues in this challenge

Tell us what’s happening:
Good afternoons to everyone,
I´m trying to solve this challenge although
it seems to me that is fine, sadly
the challenge gives me some mistakes , if someone
can help me please i will thank you so much:pray:

Your code so far


function countOnline(usersObj) {
// change code below this line
let result = 0;
for (let user in usersObj) {
  if(usersObj[user].online == false) {
    result++;
  }
}
return result;
// change code above this line
}
console.log(countOnline(users));
// 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/78.0.3904.97 Safari/537.36.

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

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-data-structures/iterate-through-the-keys-of-an-object-with-a-for...in-statement