An array of letters from a to f with numbered indices 0 through 5.

Array

Other names:
static array

In short: An array stores a fixed-size, ordered collection of elements in contiguous memory, so any element can be read or written by index in O(1) time. Inserting or deleting in the middle is O(n) because the other elements must shift.

Quick reference

Worst Case
space