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

Code Challenge Swift I can't figure this challenge

Help me. I believe this is correct as I tried it on Terminal and Xcode and they both came out correctly. Please give me a hand on this Code Challenge

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

1 Answer

You're are still trying to interpolate but it wants you to concatenate this time.

// Enter your code below
let name = "Brandon"
let greeting = "Hi there, \(name)"
let finalGreeting = greeting + " How are you?"

THANK YOU SOOO MUCH BRANDON MAHONEY!!!!