Hello! For some reason I can t log in my code below, it keeps accusing code error in line 6. I already checked commas and compared with walkthrough video and other projects. Help please.
const team = {
_players: [{firstName: “Pablo”, lastName: “Sanches”, age: 11},
{firstName: “Carlo”, lastName: “Rodriguez”, age: 12},
{firstName: “Naio”, lastName: “Gonzalez”, age: 13} ],
_games: [
{opponent: “Bronco”, teamPoints: 42, opponentPoints: 27},
{opponent: “Santos”, teamPoints: 40, opponentPoints: 25},
{opponent: “Vasco”, teamPoints: 38, opponentPoints: 23} ],
get players() {return this._players;},
get games() {return this._games;},
addPlayer(firstName, lastName, age) {
const player = {
firstName: firstName,
lastName: lastName,
age: age,
};
this._players.push(player);
},
};
team.addPlayer(Steph, Curry, 28);
team.addPlayer(Lisa, Leslie, 44);
team.addPlayer(Bug, CurryBunny, 76);
console.log(team.players);