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 trialChris van Halewyn
1,374 Pointslet output: String = "The product of \(firstValue) times \(secondValue) is \(firstValue*secondValue)"
There's a glitch. This generates an error about the name of the constant (should be "product") but if I change the constant name to product i get an error to say it should be "output". Please fix
// Enter your code below
let firstValue: Int = 12
let secondValue: Int = 14
let output: String = "The product of \(firstValue) times \(secondValue) is \(firstValue*secondValue)"
2 Answers
Richard Lu
20,185 PointsHey Chris,
I tried out your solution, and I get an error stating the following:
Make sure you're assigning the results of the multiplication operation to a constant named product
This might fix your problem:
// Enter your code below
let firstValue: Int = 12
let secondValue: Int = 14
let product: Int = firstValue*secondValue // Assigning the value to a constant named product
let output: String = "The product of \(firstValue) times \(secondValue) is \(product)" // Using it in string interpolation
Let me know if there are any additional questions.
- Rich
Chris van Halewyn
1,374 PointsHi & Thanks,
I misunderstood the question. Thanks for making it clear.
-Chris