I have this:
hash = { \"a\"=>[\"a\", \"b\", \"c\"], \"b\"=>[\"b\", \"c\"] }
and I want to get to this: [[\"a\",\"b\",\"c\"],[
[[\"a\",\"b\",\"c\"],[
I would use:
hash.map { |key, value| value }