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.

Mateusz Leśniak
4,762 PointsCreating instances array
Hi, at which point we are creating @instances array? We made a method inside Inventoryable module to conditionally assign empty array to @instances variable, but we are not calling this method. It is enough to push something inside instances and the array is created at the same time?
Christopher Phillips
10,061 PointsChristopher Phillips
10,061 PointsHi Mateusz,
The array is created here. Read it as "We create the instances array and it is given no value the first time it is accessed."
We populated the instances array via the create method within the ClassMethods module:
The create method is called via this code:
shirt1 = Shirt.create(name: "mtf", size: "L")