Try this exercise. Fill in the missing part by typing it in.
A hash table uses a hash function to map keys to __ within an array.
solution indices explanation The hash function takes a key as input and returns an index where the value associated with the key should be stored in the array.
Write the missing line below.