I have the following expression:
export const alpha: [
    { 'A': ['11','12','13'] },
    { 'B': ['21','22','23'] },
    { 'C': ['31','32','33'] }
];
I need to create a new array that has the leading keys: 'A', 'B' and 'C'
I'm trying to do this, but there is no key property:
const arr = [];
alpha.forEach(function(item) {
  arr.push(item.key);
});
How to do it?
