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 trialErin Kross
9,555 Points"Bummer! The initialize method did not take an argument"
After checking other posts about the same question, it seems like this code should pass, but I must be missing something.
class Name
def initialize(title, first_name, middle_name, last_name)
@title = title
@first_name = first_name
@middle_name = middle_name
@last_name = last_name
end
def title
@title
end
def first_name
@first_name
end
def middle_name
@middle_name
end
def last_name
@last_name
end
end
name = Name.new("Mr", "Jason", "", "Seifer")
puts name.title + " " +
name.first_name + " " +
name.middle_name + " " +
name.last_name
5 Answers
Salman Akram
Courses Plus Student 40,065 PointsHi Erin,
You have many extra codes which didn't ask by the Challenge questions. We need to follow specific solutions to each question. First name, middle name, and last name was not required to add under initialize method.
class Name
def initialize(title)
@title = title
end
def title
@title
end
def first_name
"Metal"
end
def last_name
"Robot"
end
end
name = Name.new("Mr")
puts name.title
Caleb Kleveter
Treehouse Moderator 37,862 PointsAre you trying to do the code challenge?
Erin Kross
9,555 PointsYes I am.
Caleb Kleveter
Treehouse Moderator 37,862 PointsOkay, I echo what Salman said.
Erin Kross
9,555 PointsThanks all
Caleb Kleveter
Treehouse Moderator 37,862 PointsCaleb Kleveter
Treehouse Moderator 37,862 PointsYep, I passed with the same thing.