Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

becky hayes
2,226 PointsStuck again on the tuple challenges. The challenge is this...
Using the println statement, print out the value of the language element from the result tuple.
And the attached is what i have. Finding tuples very confusing!
func greeting(person: String) -> (language: String,greeting: String) {
let language = "English"
let greeting = "Hello \(person)"
return (greeting, language)
}
var result = greeting("Tom")
println (result, language)
2 Answers

Anish Walawalkar
8,534 PointsHey Becky, you were almost there. The challenge asks you to print the language property of the result variable. You can do this using the . operator as result.language
I have also attached the code:
func greeting(person: String) -> (greeting: String, language: String) {
let language = "English"
let greeting = "Hello \(person)"
return (greeting, language)
}
var result = greeting("Tom")
println(result.language)
hope this helps :)

James Killeen
Courses Plus Student 2,207 Pointsthanks. needed that