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.

kirby Campbell
Courses Plus Student 548 PointsIm a bit confused on whats being asked in this one, I think I'm trying to take it too far... task 1of3 Tuples Swift
Any Ideas?
1 Answer

agreatdaytocode
24,757 PointsMake sure to name each item in the tuple: greeting and language. so you need to name the elements of the tuple in your return type
//give the tuple elements a name
func greeting(person: String) -> (greeting: String, language: String) {
let language = "English"
let greeting = "Hello \(person)"
return (greeting, language)
}
kirby Campbell
Courses Plus Student 548 Pointskirby Campbell
Courses Plus Student 548 PointsThis task ::: Currently our greeting function only returns a single value. Modify it to return both the greeting and the language as a tuple. Make sure to name each item in the tuple: greeting and language. We will print them out in the next task.