var albumInfo = {
2548: {
title: 'Slippery When Wet',
singer: 'Bon Jovi',
songs: ['Let It Rock', 'You Give Love a Bad Name']
},
2468: {
title: '1999',
singer: 'Prince',
songs: ['1999', 'Little Red Corvette']
}
};
console.log(albumInfo[2548])
Encountering an issue with this line of code:
console.log(albumInfo.2548)