Profile Lookup error

Tell us what’s happening:
"TypeError : cannot read property ‘0’ of undefined"
what does that mean what is wrong with my code?

Your code so far

//Setup
var contacts = [
    {
        "firstName": "Akira",
        "lastName": "Laine",
        "number": "0543236543",
        "likes": ["Pizza", "Coding", "Brownie Points"]
    },
    {
        "firstName": "Harry",
        "lastName": "Potter",
        "number": "0994372684",
        "likes": ["Hogwarts", "Magic", "Hagrid"]
    },
    {
        "firstName": "Sherlock",
        "lastName": "Holmes",
        "number": "0487345643",
        "likes": ["Intriguing Cases", "Violin"]
    },
    {
        "firstName": "Kristian",
        "lastName": "Vos",
        "number": "unknown",
        "likes": ["Javascript", "Gaming", "Foxes"]
    }
];


function lookUpProfile(firstName, prop){
// Only change code below this line

  for(var x = 0; x < contacts.length; x++){
      if(contacts.firstName[x] === firstName){
         if(contacts[x].hasOwnProperty(prop)){
            return contacts[x][prop];
          }else{
            return "No such property";
          }
      }
  }
  return "No such contact";
// Only change code above this line
}

// Change these values to test your function
lookUpProfile("Akira", "address");

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Linux; U; Android 4.2.1; en-gb; ME301T Build/JOP40D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30.

Link to the challenge:

Probably this is what is causing it contacts.firstName[x] , because contacts.firstName is not an array, while contacts is , I notice that you are referring to it correctly below that line so it may just be a typo.

i dont understand what should i do then?

oh should i just write contacts[x] instead of contacts.firstName[x] because that is not working either

at this point i dont even know what my name means so no.

it says no such contact

yeah i did that exactly and it says no such contacts

now its giving the above error again

try

if (contacts[x].firstName === firstName){

if (contacts[x].hasOwnProperty(prop)){
  return contacts[x][prop];

I understand, but all that was doing was confusing him.