A list is `[4, 2, 4]`. Which description of `items.remove(4)` is correct if `items` refers to that list?
Explanation
The method searches by equality and deletes only the earliest matching element, leaving `[2, 4]`. It does not interpret 4 as an index or remove every duplicate, and absence would produce `ValueError` rather than a silent no-op.