Wherefore art thou *need help*

Tell us what’s happening:
I need help. i don’t know what semicolon I’m missing.
I have an error for every WhatIsInAName.
It says that I’m missing a semicolon.
any and all help is appreciated.

Your code so far

function whatIsInAName(collection, source) {
  // What's in a name?
  var arr = [];
  // Only change code below this line
  whatIsInAName([{ first: "Romeo", last: "Montague" }, { first: "Mercutio", last: null }, { first: "Tybalt", last: "Capulet" }], { last: "Capulet" });return [{ first: "Tybalt", last: "Capulet" }]
 
 whatIsInAName([{ "a": 1 }, { "a": 1 }, { "a": 1, "b": 2 }], { "a": 1 });return [{ "a": 1 }, { "a": 1 }, { "a": 1, "b": 2 }]
 
whatIsInAName([{ "a": 1, "b": 2 }, { "a": 1 }, { "a": 1, "b": 2, "c": 2 }], { "a": 1, "b": 2 });return [{ "a": 1, "b": 2 }, { "a": 1, "b": 2, "c": 2 }]

 whatIsInAName([{ "a": 1, "b": 2 }, { "a": 1 }, { "a": 1, "b": 2, "c": 2 }], { "a": 1, "c": 2 });return [{ "a": 1, "b": 2, "c": 2 }]
  // Only change code above this line
  return arr;
}

whatIsInAName([{ first: "Romeo", last: "Montague" }, { first: "Mercutio", last: null }, { first: "Tybalt", last: "Capulet" }], { last: "Capulet" });

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/wherefore-art-thou

You’re missing both )s and ;s after all of your calls to whatIsInAName from within your function.

I’m not really sure what you’re trying to accomplish here though.