Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

GIFT AKARIS
4,383 Pointsmap filter
Can someone please help me check why am getting an error message
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
displayYears = years.filter(year => year >2000).
map(year => `${year} A.D}`)
console.log(displayYears);
2 Answers

KRIS NIKOLAISEN
54,663 PointsStrange. That was the only thing I changed and it passed. Maybe try without the console.log statement?
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
displayYears = years.filter(year => year >2000).
map(year => `${year} A.D.`)

KRIS NIKOLAISEN
54,663 PointsYou have a curly brace instead of a period after A.D}
Should be A.D.

GIFT AKARIS
4,383 PointsThanks Kris,
I corrected it but am still getting an error.
GIFT AKARIS
4,383 PointsGIFT AKARIS
4,383 PointsThanks Kris,
its working now