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 trialGeovanny 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!