Given I have a object like ..
const payload = {
prop0: 'a',
prop1: 'b',
prop2: 'c',
prop3: 'd',
prop4: 'e'
};
On doing this [...Object.values(payload)]
Will it always return
['a', 'b', 'c', 'd', 'e'];
Or can in some conditions the order be different like ['b', 'c', 'a', 'e', 'd']