I have the following array structure:
[ ["one_id",[["1a", 10], ["1b", 54], ["1c", 43]]],
["two_id",[["2a", 32], ["2b", 76], ["2c", 34]]],
["thr_id",[["3a", 85], ["3b", 13], ["3c", 42]]],
["fou_id",[["4a", 15], ["4b", 21], ["4c", 65]]],
]
And I would like to drop the "value" of the nested arrays to get to an output like:
[ ["one_id", ["1a","1b","1c"]],
["two_id", ["2a","2b","2c"]],
["thr_id", ["3a","3b","3c"]],
["fou_id", ["4a","4b","4c"]],
]
Any suggestion?