I have a little problem with a test. Can you please help me and tell me what's wrong.
Write a for-in loop to loop through each gamer in the gamerScores object. Inside the loop, use the keys and values from the gamerScores object to log the strings pictured above to the console.
let gamerScores = {
john: 89,
paul: 725,
george: 553,
robert: 9302,
steve: 733,
};
for (let i = 0; i < gamerScores.length; i++) {
console.log(gamerScores[i]);
}