Allen Wirfs-Brock (2013-10-29T00:50:22.000Z)
domenic at domenicdenicola.com (2013-11-02T19:07:06.315Z)
So what's so onerous about returning a fresh array from the getter each time it was called. If it was implemented in Es6, it would just be: ```js return Array.from(internal_compy); ``` Proxies aren't cheap. Unless these arrays tend to be quite large, I wouldn't be surprised if the overhead of using a Proxy for this useless ended up being higher than the cost of making fresh arrays.