Concept Flow - Object keys and values
Start with an object
Get keys using Object.keys(obj)
Get values using Object.values(obj)
Use keys and values as arrays
End
We start with an object, then extract its keys and values as arrays to use them separately.