para a chave de loop
// if you want to get the 'value' of the key you can do it this way
const user = {firstName: 'John', lastName: 'Doe'}
for(key in user) console.log(user[key]);
// output :
// John
// Doe
Magnificent Macaque