Which of these statements are true about dictionaries?

We can access a value through its keyDictionaries have no specific orderKeys and values can be of any typeDictionaries can be sorted like any collection

Right! Dictionaries are unordered and their key-value pairs can be of any type. We can access values through their keys, but we can't sort them.

Close! Dictionaries are unordered and their key-value pairs can be of any type. We can access values through their keys, but we can't sort them.