Ad
  • Custom User Avatar

    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'