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

Ruby Ruby Objects and Classes Variables and Methods Variables and Methods

Inside the Name class, create a method called title that returns the @title variable:

Hello Ruby Friends,

I am having trouble with this problem.

I am rather unsure what is being asked and how to begin this one! I definetly want to keep moving forward with this Ruby Track.

Please helpppp

Thanks

class.rb
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("Mrs.")

2 Answers

You're returning the string "title", rather than the variable title. In this case it's @title.

class Name
  def initialize(title)
    @title= title

  end
  def title
    @title
  end
  def first_name
    "hello"
  end

  def last_name
    "moda"
  end


end

  name= Name.new("Mr")
name.title