let myFriend =  {
  
  name: 'Junyet ',
  age:25,
  
};
for (const valuesOfObject of Object.keys( myFriend )){
  console.log(valuesOfObject);
}