Q2Single correct3 Marks10 May 2026
Consider the following code:
```
items = ["pen", "pencil", "eraser", "marker"]
out = []
for i in range(len(items)):
for j in range(i):
if len(items[i]) == len(items[j]):
out.append(items[i])
break
print(out)
```
What is the output?