Learn Basic String and Array Methods by Building a Music Player - Step 90

Tell us what’s happening:

What am I doing wrong here.
I follow the instructions, set the attribute of resetButton
use the element.id
I know the element is my button. But what is wrong with my statement.

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

  if (userData?.songs.length === 0) {
    const resetButton = document.createElement("button");
    const resetText = document.createTextNode("Reset Playlist");
    resetButton.id=("reset");
    resetButton.ariaLable = ("Reset playlist");
  }

// 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/126.0.0.0 Safari/537.36

Challenge Information:

Learn Basic String and Array Methods by Building a Music Player - Step 90

There are no examples, I only can follow the instructions which is like a puzzle to me modifying my code again and again. I started this test at 9 am, and it took me 5 hours to finish 90 questions. This free Camp thing doesn’t fit the programming noob like me.

Double check your spelling of “Label”

Hi @liuyang3728

In addition to the typo spotted by @pkdvalis , remove the round braces from the assignment.

You should use resetButton.id to create an id attribute named "reset" for the resetButton.
You should use resetButton.ariaLabel to create an "aria-label" attribute named "Reset playlist" for the resetButton.

Happy coding