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 Basics Swift Types String Manipulation

Devin Goodson
Devin Goodson
907 Points

What mistake did I make? let greeting = "\("Hi there"), \(name), \(finalGreeting)"

I watch the video over and over again and tried may different veriences of what I think the answer should be. What mistake did I make?

strings.swift
// Enter your code below
let name = "Devin"
let finalGreeting = "How are you?"
let greeting = "\("Hi there"), \(name), \(finalGreeting)"

1 Answer

Devin Goodson This time it wants you to use concatenation, not interpolation. It is asking you to concatenate "How are you?" to the end of your string called greeting and store that entire result into a variable named finalGreeting. It is important that you also include the "." and space after the person's name. Your end result should look like this:

let name = "Devin"
let greeting = "\("Hi there"), \(name)"
let finalGreeting = greeting + ". How are you?"

Let me know if you have any further questions.

Devin Goodson
Devin Goodson
907 Points

Thank you. I misunderstood the question.