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 Functions and Optionals Parameters and Tuples Tuples

I'm just really stuck on this tuples challenge

What do I do here? It keeps saying that my function needs to contain the elements language and greeting. Even when I replace the greetingMe and call the greeting function within the return, it still says it is wrong. I've been trying to figure this out for a while and still can't seem to get it.

tuples.swift
func greeting(#person: String) -> (String, Int) {
    let language = ("Hello \(person)", 1)
    let greetingMe = ("howdy", 4)
    return (greetingMe, language)
}

1 Answer

Jhoan Arango
Jhoan Arango
14,575 Points

This will help you out:

Also, this question was asked by someone else earlier, and I gave a more detail answer to the challenge. Here is the link https://teamtreehouse.com/forum/help-with-task-1-of-3-in-tuples. You may want to read that, it may help you.

func greeting(#person: String) -> (greeting: String, language: String) { 
let language = "English" 
let greeting = "Hello (person)" 

return (greeting, language)

 }