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

Tell us what’s happening:

Hi what am I missing here?

Your code so far

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

/* file: styles.css */

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

  headCoach: {
    coachName: "Carlos Bilardo",
    matches: 7,
    players: [],
  }
  };


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Safari/605.1.15

Challenge Information:

Can you resend your response?

The headCoach property is the whole of this code.

headCoach: {
    coachName: "Carlos Bilardo",
    matches: 7,
  },

I don’t understand I work with examples and corrections upload an example to get this right.

You have added the new key/value pair within the headCoach object. The instructions is asking to add it below it.

1 Like

Thanks for the help that worked.

1 Like