Aprende Métodos Básicos de Cadena y Arreglo Construyendo un Reproductor de Música - Step 71

Cuéntanos qué está pasando:

Step 71
To ensure the player’s display updates whenever a new song begins playing, call the setPlayerDisplay() function within the playSong() function.

Now you should see the song title and the artist show up in the display.

playSong(setPlayerDisplay())

my code does not work , error message "you should call the setPlayerDisplay() inside the playSong function

Tu código hasta el momento

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

/* file: styles.css */

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

 setPlayerDisplay(playSong())

// User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36

Información del Desafío:

Aprende Métodos Básicos de Cadena y Arreglo Construyendo un Reproductor de Música - Step 71

Welcome back to the forum @wencesfernando

You are not asked to give an argument to the function call.

Note: the editor line is already inside the playSong function.

Happy coding