I don’t know what is wrong here. Challenge ask “Inside the userData object create a songs property. For the value, spread allSongs into an array”. When I put this, console said “SyntaxError: unknown: Unexpected keyword ‘const’. (83:2)”
The code of mine for now:
let userData = {
const songs = […allSongs];
};