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.

meghana Joshi
4,596 PointsI am not sure what I am doing wrong
I am getting an error for the task.
const years = [1989, 2015, 2000, 1999, 2013, 1973, 2012];
let displayYears;
displayYears = years.filter(year => year > 2000).map(filteredYear => filteredYear + " A. D. ");
const years = [1989, 2015, 2000, 1999, 2013, 1973, 2012];
let displayYears;
displayYears = years.filter(year => year > 2000).map(filteredYear => filteredYear + " A. D. ");
// displayYears should be: ["2015 A.D.", "2013 A.D.", "2012 A.D."]
// Write your code below
2 Answers

Jason Anders
Treehouse Moderator 145,728 PointsYou're on the right track and have the correct syntax.
If you have a look at the error message you are recieving: Something's not right. Output of
displayYears: ["2015 A. D. ","2013 A. D. ","2012 A. D. "]
you'll notice that the output has a space after each period in A. D.
, but the instruction explicitly ask for the out to be A.D.
(with no spaces).
If you just reformat your string for output to match the instructions, it will pass
Remember, Challenges and the instructions are very picky and always need to be followed exactly. Even a misplaced space of period or typo will result in the Code checker throwing you a Bummer!
.
Nice work, though!! :)

meghana Joshi
4,596 Pointsoh ok ... thanks