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.

jas0n
10,089 Pointscant get console to return proper value
console.log i've tried all sorts but no joy!
3 Answers

Steven Parker
220,378 PointsThe name of the function being called is missing, and there are some syntax issues with the arguments:
console.log( (2, 5)(sqm)); // original code
console.log( getArea(2, 5, "sqm") ); // corrected

jas0n
10,089 PointsSteven Parker that's just fabulous, i can go to sleep now :-)

jas0n
10,089 PointsI've improved slightly console.log ((2 * 5), ("sqm"));
which returns:- 10 "sqm" in the console I now have the units sqm as a string, i was hoping for just 10 sqm