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 trialjoe osorio
Courses Plus Student 642 Pointsoperators
why the creation of this variable is not allowing me to get an equal of 19? var nineteen = (c * 5) - a ;
1 Answer
Dino Paškvan
Courses Plus Student 44,108 PointsBecause you're only allowed to get the numbers as combinations of a
, b
and c
, and you're introducing 5
there. You have to figure out how to get to 19
by only using the values stored in a, b, c
variables.