DIM is short for dimension. so , DIM list[10] creates a variable (which is an array) called list. Array indexing starts at 0, so the first reference is list[0] and the last is list[9]. Each index can hold a value. You can add or remove elements from the array, increasing or decreasing the total amount too.