Tell us what’s happening:
Hello
This is my code:
const allSongs = [
{
id: 0,
title: “Scratching The Surface”,
artist: “Quincy Larson”,
duration: “4:25”,
src: “https://cdn.freecodecamp.org/curriculum/js-music-player/scratching-the-surface.mp3”,
}
];
I am not sure what I am doing wrong.
Is someone able to help or guide me in answering this problem?
Thanking you.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
const allSongs = [
{
id: 0,
title: "Scratching The Surface",
artist: "Quincy Larson",
duration: "4:25",
src: "https://cdn.freecodecamp.org/curriculum/js-music-player/scratching-the-surface.mp3",
}
];
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 Edg/127.0.0.0
Challenge Information:
Learn Basic String and Array Methods by Building a Music Player - Step 4