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.

Seamus Sionóid
25,669 PointsProblem with "The Console" challenge
There's a problem with "The Console" challenge.
On Task 2 of 3 you are asked to: "Review the code in app.js. Use the appropriate console method to print out the details object."
Code to review: const name = "Andrew"; const details = { favouriteLanguage: "JavaScript", age: 33, children: 3 } const errorMessage = "Something bad has occurred";
The answer to this task is: console.dir(details);
Yet I keep getting this error:
"Bummer: You didn't write console
anywhere in your code."
Any help would be appreciated.
1 Answer

Brandon Leichty
Full Stack JavaScript Techdegree Graduate 35,193 PointsHey Seamus,
I think I have an idea of what's happening. Are you by chance removing the first console.log(name); and replacing it with console.dir(details);? I tried that and it gave me the same error message you described.
I believe what the challenge is looking for, is for you to add each console output to a new line. Like this:
console.log(name);
console.dir(details);
// Next line of code in challenge.
I was able to complete the challenge by doing this. Hope that helps!
Happy coding! -Brandon
Seamus Sionóid
25,669 PointsSeamus Sionóid
25,669 PointsGood man Brandon! That was indeed the problem. Thanks!