Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nils Garland
18,416 PointsI am stuck now ;)
what shall i do
// Enter your code below
let firstValue = 11.3
let secoundValue = 33.54
3 Answers

Chris Stromberg
Courses Plus Student 13,389 PointsCheck your spelling!
let secondValue = 33.54

Michael Afanasiev
Courses Plus Student 15,596 PointsHi Nils,
We need to create another constant named output and use it with string interpolation (review the 2nd video on this segment)
Your code should be looking like this:
let firstValue = 11
let secondValue = 4
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)."
Edit: My bad, thought you were stuck on the 2nd task but Chris Stromberg pointed out your mistake.

Nils Garland
18,416 Pointshahaha i did not see it