Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Array Iteration Methods Combining Array Methods Method Chaining

Lainey Odette
Lainey Odette
18,618 Points

Cannot Pass Code Challenge - Not Sure Why

Hello. I am unable to pass the code challenge for Method Chaining. When I check my work, it says that I am wrong because I am not using the method chaining. But I am using the method chaining. My code works, I have used method chaining as required, so I'm not sure why it says I'm wrong and will not pass me through the challenge. Please help me understand what Treehouse is looking for? Thank you.

app.js
const years = [1989, 2015, 2000, 1999, 2013, 1973, 2012];
let displayYears;

// displayYears should be: ["2015 A.D.", "2013 A.D.", "2012 A.D."]
// Write your code below

const thisCentury = years.filter(year => year > 2000).map(year => year + " A.D.");

displayYears = thisCentury;

1 Answer

Creating thisCentury is failing the challenge and unnecessary. Just assign your filtered array directly to displayYears.

Lainey Odette
Lainey Odette
18,618 Points

Gotcha! I got thrown off because it wanted me to create the code below the comments. Thanks, Kris! I knew it had to be something simple.