I have this object
const foo = {
a: 'kitten',
b: 'puppy',
c: 'lion'
};
Destructuring it into variables goes like this
const { a, b, c } = foo;
Is there a one-liner how to desctructre this into an array, so that the result ist
const array = [a, b, c];