Newby question...
When I try to create an array using this method...

value = [1, 2]
buffer = Array.new(10) {value}

I get an array of references to the single instance of "value". But I want an array of unique objects. How should I be specifying this?

Thanks...

(apologies to the other member called "NewGuy" without a space, didn't mean to hijack your na...