How do i print the values of the properties of this object. At the moment it just prints the property names not the values.
var nyc = {
fullName: "New York City",
mayor: "Michael Bloomberg",
population: 8000000,
boroughs: 5
};
for(var x in nyc) { console.log(nyc[x]); }
console.log(nyc)?