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 Build an Address Book in Ruby Search Appending Contacts

in Build Address Book, challenge Task 2 of 2: "Append the contact variable to the Contacts array inside of the addr

seriously confused by this question.... what does it mean to append the contact var to the contacts array inside of the address_book var ???

address_book.rb
contact = Contact.new
contact.first_name = "My"
contact.last_name = "Name"

address_book = AddressBook.new
contact = Contact.new
results.push(contact)

2 Answers

hey ! you already have the contact variable declared as an instance of the Contact class, same thing goes for the address_book variable that is an instance of the AddressBook Class, you just have to append the contact variable inside the array called 'contact' in the AddressBook class, using this lasts instance ( address_book) :

contact = Contact.new
contact.first_name = "My"
contact.last_name = "Name"

address_book = AddressBook.new
address_book.contacts.push(contact)  # or address_book.contacts<< contact

Also, you cannot add "end" or it won't pass