Robert and Simon,
Thank you both. did read the documentation on select,
but evidently did not mull over it enough.
/****************************************/
select {|item| block } → an_array
Invokes the block passing in successive elements from array, returning
an array containing those elements for which the block returns a true
value (equivalent to Enumerable#select).
/****************************************/
Hmm, looks pretty straight forward this time :)
Cheers,
Jet