That's how I read the description, it says "given random color when instantiated". I expect a valid solution to work this way:
a = Ghost.new b = Ghost.new a.color #=> 'red' a.color #=> 'red' b.color #=> 'white' b.color #=> 'white'
Loading collection data...
That's how I read the description, it says "given random color when instantiated". I expect a valid solution to work this way: