Remembering to copy the quiz names case sensitive

Tell us what’s happening:

I keep making silly mistakes when I don’t copy the quiz word for word (case sensitive). It throws me off track from time to time. lol… oh my brain haha

Your code so far


var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CD",
      "8T",
      "LP"
    ],
    "gold": true
  },
  // Add record here
  {
    "artist": "Elvis Presley",
    "title": "The Wonder Of You",
    "release_year": 1986,
    "formats": [       // i.e Formats or Release Year.. doh!
      "Cd",
      "Dvd",
      "Cassette",
      "Blue ray"
    ]
  }
];

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects

Do you have a question?

no question, sorry. Just saying that i need to make sure i copy the words correctly or my code wont work.