Learn Modern JavaScript Methods by Building Football Team Cards - Step 5

Tell us what’s happening:

Task is to create variable called myFavoriteFootballTeam and assign it an empty object.What is wrong?

Your code so far

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

/* file: styles.css */

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

const myFavoriteFootballTeam= document.getElementById("");

// 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/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Learn Modern JavaScript Methods by Building Football Team Cards - Step 5

Hi @zm17jaga

You should use const to declare the variable called myFavoriteFootballTeam and assign it an empty object.

Where is the empty object?
An object is a data type that stores information using key / value pairs.

Happy coding