What should this function return if the priority TO-DOs should be updated in the future?

A list like [first, second, last] since lists can be updatedA tuple like (first, second, last) since tuples can be updatedEither a list or a tuple, since both can be updated

A list like [first, second, last] since lists can be updated.