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 trialSara Brothers
7,341 PointsRuby Basies
Sorry Im not good in math, can you please help me?
a = 6
b = 2
product = a*b
2 Answers
Amanda Wagner
6,070 PointsThis is saying product is equal to a (which is 6) multiplied by b (which is 2). So product = 12, but what is it asking you to do?
Will Long
5,449 PointsThis is plugging "a", which equals six, in to the "a" place in the equation and the same for "b". If you are looking for the answer to "a*b" it is 12 because "a" = 6 and "b" = 2 2 multiplied by 6 equals twelve
Geoff Parsons
11,679 PointsGeoff Parsons
11,679 PointsWhat you have so far is correct for the first step of the challenge. What specifically is your question?