#Determining how to access data based on the object type
- Call .class on the object that we have to see what type it is
- If it is an array, we can use the array methods (ie .first, .sort [])
- If it is a hash, we can use the hash methods (ie .fetch, h[:foo])
- If it is something else, we can ask what methods it responds to by doing foo.methods - Object.methods