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.

Alphonse Cuccurullo
2,513 PointsConfused on this syntax error.
class Name
attr_reader(:title, :first, :middle, :Last)
attr_writer(:title)
def initialize(title, first, middle, last)
@title = title
@first = first
@middle = middle
@last = last
end
end
name = Name.new ("Mr", "Ally", "", "Cuccurullo")
puts name.title = " " +
name.first + " " +
name.middle+ " " +
name.last
puts "title: #{name.title} "
name.title = "dr"
puts "title: #{name.title} "
its telling me on line rb:16 unexpected ',' expecting end-of-input. What does that mean?

Alphonse Cuccurullo
2,513 PointsHi, i tried it and am getting the same thing.
1 Answer

Cena Mayo
55,235 PointsHi Alphonse,
Try changing your ':Last' variable to :last in the attr_reader :)
Alexander Davison
65,454 PointsAlexander Davison
65,454 PointsHello! Can you try this? I think this is what you want: