How would I fill const objArray with numObj object's values using the Object.values() method? I've only been able to do it with a for loop + push method (demonstrated below)
const numObj = {
oddNum: 1,
evenNum: 2,
foundNum: 5,
randomNum: 18
};
const objArray = [];
for (var values in numObj) {
objArray.push(numObj[values]);
}