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

Right result but wrong answer

I just finished doing part 2 of the exercise and it works perfect on Playground in Xcode yet the test environment won't see it as correct.

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

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

You missed a word in the instructions. Declare a constant named finalGreeting, and concatenate the value of greeting with the string literal " How are you?". It explicitly says to use contatenation to add the value of greeting. You've used interpolation. And indeed, the result is the same but they're checking your ability to use both methods.

Here's the line you need:

let greeting = " Hi there, \(name). " + finalGreeting
Majed Alshammarii
Majed Alshammarii
1,174 Points

what is wrong with this code?

let greeting = "Hi there," let name = "Linda"

let fullgreeting = "(greeting) (name)"

let finalGreeting = greeting + " " + name + "." + " How are you?"

Thank you for your response Jennifer, but this wasn't what they meant. I solved it now.

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

this worked for me