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 trialdonnie scantz
419 Pointsnot sure why i am getting this wrong
yea, I'm a beginner, and this may seem pretty elementary but in this Concatenated final greeting, i'm not sure why my code i wrong.
let name = "Donnie"
let greeting = "Hi there, \(name)"
let finalGreeting = "\(greeting), \(How are you?)"
2 Answers
jcorum
71,830 Pointsdonnie, you are using String interpolation rather than concatenation. Try this instead:
let name = "Donnie"
let greeting = "Hi there, \(name)"
let finalGreeting = greeting + " How are you?"
The + sign "adds" the two Strings together.
jcorum
71,830 Pointsdonnie, try this one. It seems I left out a period it wanted after the name:
let name = "Donnie"
let greeting = "Hi there, \(name)."
let finalGreeting = greeting + " How are you?"
Jennifer Nordell
Treehouse Teacherjcorum He posted the question elsewhere and his code has changed to have finalgreeting as the constant instead of finalGreeting so the challenge is rejecting it. :(
donnie scantz
419 Pointsdonnie scantz
419 Pointsthank you!
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse Teacherjcorum wow you're fast!
donnie scantz
419 Pointsdonnie scantz
419 Pointsi did try this, and still was wrong.