Found a "bug" while having loads of nested structures (for db testing): ``` coffee array = [ n: [ "a" ] # here the bracket is indented c: "hello" ] ``` Translates to ``` javascript array = [ { n: ["a"] }, { c: "hello" } ]; ```