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 trialCJ Doyle
371 PointsAm I doing this right?
let firstValue = 2
let secondValue = 4
let product = firstValue * secondValue
let output = "(product) of (firstValue) times (secondValue) is"
// Enter your code below
let firstValue = 2
let secondValue = 4
let product = firstValue * secondValue
let output = "\(product) of \(firstValue) times \(secondValue) is"
2 Answers
Maria Te
8,521 PointsYou were supposed to assign a constant named Output containing a string saying what firstValue times second Value equals. Here's what the answer is supposed to look like:
let firstValue = 7
let secondValue = 9
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)"
CJ Doyle
371 PointsThank you so much!!