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 trialNazaam Kutisha
7,667 PointsThis Challenge seems to be malfunctioning
I met the requirements of the challenge, as far as I can tell. Yet, when I type in my final response for task 4, the "bummer" statement is oops now your task1 isn't right. But it is right....
var three = c-b+a;
var ten = c*b+a+a;
var nineteen = (c*c)+(a+b);
var onehundred = (c*a+b+b)(b+b+a);
2 Answers
Caleb Abraham
15,158 Pointsvar onehundred doesn't have an operand between the parentheses: var onehundred = (c*a+b+b)(b+b+a);
do you mean:
var onehundred = (c*a+b+b)*(b+b+a);
Nazaam Kutisha
7,667 PointsHi Caleb,
I tried it that way as well, but I received the same result.