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.

Geovanny Reyes
3,876 PointsIm having trouble with this second step of the problem. help?
Thank you!
struct Person {
let firstName: String
let lastName: String
func getFullName() -> String {
return "\(firstName) \(lastName)"
let aPerson = Person(firstName: "", lastName: "")
}
}
let fullName = Person()
1 Answer

Steven Deutsch
21,046 PointsHey Geovanny Reyes,
You're close! Let's just fix a few things:
First, you need to create your Person instance and assign it to a constant aPerson OUTSIDE of your structure.
Second, after you do this, you need to call the getFullName() method you created on that aPerson constant holding the instance of Person. You will assign the result of this method call to a constant called fullName.
struct Person {
let firstName: String
let lastName: String
func getFullName() -> String {
return "\(firstName) \(lastName)"
}
}
let aPerson = Person(firstName: "Geovanny", lastName: "Reyes")
let fullName = aPerson.getFullName()
Good Luck!
Geovanny Reyes
3,876 PointsGeovanny Reyes
3,876 PointsI was close! thank you very much!