crabkilla,
const albumInfoObj = {
"title": "Ray of Light",
"singer": "Madonna",
"year": 1998,
"songs": ["Swim", "Little Star", "Frozen", "Skin","The Power of Good-Bye"],
"recorded": {"studioName": "Larrabee North Studio", "months": 4.5},
"singles": [ {"name": "Frozen", "year": 1998},
{"name": "Nothing Really Matters", "year": 1999},
{"name": "Ray of Light", "year": 1998} ],
}
let propList = "";
for (const prop of albumInfoObj.singles) {
propList += prop.name + "\n";
}
console.log(propList);