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 trialBen Sautter
309 PointsI am having a problem with step 2 the string interpolation
let firstValue = 2 let secondValue = 4 let product = firstValue * secondValue
let output = "(product) = (firstValue) * (secondValue)"
// Enter your code below
let firstValue = 2
let secondValue = 4
let product = firstValue * secondValue
let output = "\(product) = \(firstValue) * \(secondValue)"
3 Answers
Daniel Turato
Java Web Development Techdegree Graduate 30,124 PointsYou had the right idea but these values had to put placed in a specific order alongside a sentence like so:
let output = "The product of \(firstValue) times \(secondValue) is \(product)"
Ben Sautter
309 Pointsthank you for the response, i needed to take literal to heart a little more
Evarist Vatnikaj
2,846 Pointsthank you i was stuck on that for a minute