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 trialAaryen Singh
1,688 PointsWhy is it telling me this: The format of your output string doesn't match the requirements listed?
It's telling me that I've got the output string format wrong but I've tried every way and there is still no answer
let firstValue: Int = 2
let secondValue: Int = 4
let product = firstValue * secondValue
let output: String = "The product of \(firstValue) and \(secondValue) is \(product)."
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Aaryen Singh
Your syntax is correct, but your wording is not. Instructions for the challenges are very specific and need to be followed exactly, or the code checker will throw you a Bummer
.
Here the instruction say the string must be "The product of x times y ..." but you have "The product of x and y ..."
Just fix that up the it'll be good to go!
Nice work :)
Aaryen Singh
1,688 PointsAaryen Singh
1,688 PointsThank you so much that really helped me.