Hello, When would I need to use the object from the example? ``` mixins: { 1: mixin1, 2: mixin2 } ``` Wouldn't an array also guarantee the order of the mixins? ``` mixins: [ mixin1, mixin2 ] ``` Cheers,