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 trialRichard YI
310 PointsI test in my Xcode, it works but strings.swift notice wrong
let name = "BORAMA"
let greeting = "("Hi there,"), (name)"
let finalGreeting = "(greeting), ("How are you?")"
// Enter your code below
let name = "BORAMA"
let greeting = "\("Hi there"), \(name)"
let finalGreeting = "\(greeting). \("How are you?")"
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Richard,
You're receiving the "Bummer" because you didn't provide what the challenge asked for. For Task 2, it wants you to use Concatenation
to generate the final statement, but you are using Interpolation
. Just change the format to Concatenate the string together instead. If you're unsure on how to Concatenate a String, you can review this video starting at 4:30.
Also, while it won't throw an error, you shouldn't be Interpolating
string literals. Only variables need to be interpolated. So,
let greeting = "\("Hi there"), \(name)"
should only be
let greeting = "Hi there, \(name)"
Keep Coding! :)