Array
An array is a shelf: direct index access is easy when you know the slot, but a plain search walks slot by slot until it finds the thing or runs out of shelf.
Ideal use: compact ordered records, numeric buffers, lookup by known index, table-like data, and browser-friendly collections where cache locality matters.