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 trialSoroush Salehi
410 PointsRight result but wrong answer
I just finished doing part 2 of the exercise and it works perfect on Playground in Xcode yet the test environment won't see it as correct.
// Enter your code below
let name = "Soroush"
let finalGreeting = "How are you?"
let greeting = " Hi there, \(name). \(finalGreeting)"
//let finalGreeting = "\(greeting). How are you?"
2 Answers
Jennifer Nordell
Treehouse TeacherYou missed a word in the instructions. Declare a constant named finalGreeting, and concatenate the value of greeting with the string literal " How are you?". It explicitly says to use contatenation to add the value of greeting. You've used interpolation. And indeed, the result is the same but they're checking your ability to use both methods.
Here's the line you need:
let greeting = " Hi there, \(name). " + finalGreeting
Soroush Salehi
410 PointsThank you for your response Jennifer, but this wasn't what they meant. I solved it now.
let name = "Soroush"
let greeting = "Hi there \(name)"
let finalGreeting = greeting + ". " + "How are you?
this worked for me
Majed Alshammarii
1,174 PointsMajed Alshammarii
1,174 Pointswhat is wrong with this code?
let greeting = "Hi there," let name = "Linda"
let fullgreeting = "(greeting) (name)"
let finalGreeting = greeting + " " + name + "." + " How are you?"