This lesson shows how to use ellipsis (...) in numpy array indexing. The ellipsis fills in missing dimensions with ':' to select all elements in those dimensions. For example, in a 3D array arr with shape (2,3,4), indexing arr[1,...,2] means select the element at index 1 in the first dimension, all elements in the middle dimension, and index 2 in the last dimension. This results in a 1D array of shape (3,) containing elements [14, 18, 22]. The ellipsis helps avoid writing all ':' when selecting slices in multi-dimensional arrays. The execution table traces how the ellipsis expands and what elements are selected step-by-step.