hash table (hash map) is a data structure that implements an associative array abstract data type, a structure that can map keys to values(This means every Node or Bucket has both a key, and a value). A hash table uses a hash function to compute an index, also called a hash code, into an array of buckets or slots, from which the desired value can be found. During lookup, the key is hashed and the resulting hash indicates where the corresponding value is stored.
Library
The worst possible hash is one that hashes every single key to the same exact index of an array. The more keys you have hashed to a specific index, the more key/value pair combos you can potentially have.