Sequential search algorithm for array-based lists
1. Compare the key element sequentially with each element in the array
2. Continue until the key matches an element or the array is exhausted
3. If a match is found, return the index of the matching element
4. If no match is found, return -1