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 trial

iOS Swift 2.0 Basics Swift Types String Manipulation

Richard YI
Richard YI
310 Points

I 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?")"

strings.swift
// Enter your code below

let name = "BORAMA"

let greeting = "\("Hi there"), \(name)"

let finalGreeting = "\(greeting). \("How are you?")"

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi 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! :) :dizzy: