The runtime need to has the visitor for the spread operator. ``` var str = "foo"; var chars = [ ...str ]; // [ "f", "o", "o" ] ```