We can also generate an array which contains all the keys stored in an object with the Object.keys() method. This method takes an object as the argument and returns an array of strings representing each property in the object. Again, there will be no specific order to the entries in the array.
Finish writing the getArrayOfUsers function so that it returns an array containing all the properties in the object it receives as an argument.