Tell us what’s happening:
Hello. There is a problem in my code. Please help me. The developer console says: // running tests
- Your allSongs array should have one value.
- Your allSongs array should have an object as its first value.
- Your allSongs array should have an object with an id property set to the number 0.
- Your allSongs array should have an object with a title property set to the string “Scratching The Surface”.
- Your allSongs array should have an object with an artist property set to the string "Quinc
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
allSongs.push({
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/128.0.0.0 Safari/537.36 OPR/114.0.0.0
Challenge Information:
Learn Basic String and Array Methods by Building a Music Player - Step 4