Iterate Through the Keys of an Object with a for...in Statements

**Helloo guys
can any one check out what could possibly be wrong with my code **

thats my code below


let users = {
  Alan: {
    age: 27,
    online: false
  },
  Jeff: {
    age: 32,
    online: true
  },
  Sarah: {
    age: 48,
    online: false
  },
  Ryan: {
    age: 19,
    online: true
  }
};

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

console.log(countOnline(users));

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

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

You are returning too early.

Return UsersOnline after the for loop ends.

Thanks for responding, it worked.