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 trialBeverly Lwenya
Courses Plus Student 1,230 PointsMultiplication in Ruby
What's not correct?
a = 6
b = 2
a * b = 12
2 Answers
Justin Iezzi
18,199 PointsHi Beverly,
It looks like you're doing all the hard work for the program! :)
Let the computer calculate 6 * 2 by storing the product into a variable named product
, as per the code challenge description.
See the syntax here -
a = 6
b = 2
product = a * b
The product of 6 * 2 will be store in the product
variable, so product
now equals 12. This also applies to the next step, where you'll use the product
variable as a part of the calculation.
Beverly Lwenya
Courses Plus Student 1,230 PointsOh wow! I knew it was a really simple solution I was overlooking. Thanks for taking the time to answer my question! :)