Let say I have such Hashtable:
Hashtable<Object, Object> test = new Hashtable<>();
test.put("t", 1);
test.put(2, "t123");
test.put(3, true);
How could I just return any value from it or get any key from this hash table without knowing any key or value? Should I just iterate it and get first value or maybe there is some simpler better way?