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.

flaviomalesani
2,788 PointsSwift 2.0 Basics. the Greeting Challenge task 2 of 2 appears to have a problem.
Swift 2.0 Basics.
let name = "Flavio." let greeting = "Hi there, (name)" let finalGreeting = "(greeting) How are you?"
// Enter your code below
Swift 2.0 Basics.
the Greeting Challenge task 2 of 2 appears to have a problem.
let name = "Flavio."
let greeting = "Hi there, \(name)"
let finalGreeting = "\(greeting)How are you?"
2 Answers

Jason Anders
Treehouse Moderator 145,692 PointsHey Flavio,
Task 2 of this challenge wants you to use Concatenation
to form the string, but you are using string interpolation
, which is why you are getting the Bummer!
You can review how to form a concatenated string in the first video starting at the 4:30 mark.
If you still need assistance, feel free to post a reply.

Cameron James
PHP Development Techdegree Student 4,535 Pointslet name = "John" let greeting = "Hi There, (name)" let finalGreeting = greeting + ". How are you?"
here is what it should look like. Hope this helps