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 trialirene poh poh heng
1,245 Pointshelp! i do not understand the task as required: "Set the variable product to be a multiple of the variables a and b."
need clarification on the task
a = 6
b = 2
a*b = 12
1 Answer
Steve Hunter
57,712 PointsHi,
You're correct - but you want to create a variable called product
and store the result of a * b
in it:
a = 6
b = 2
product = a * b
Make sense?
Steve.