The `topChem` and `topPhy` lists contain cards of students with Chemistry marks and Physics marks greater than 75 respectively. What will `someList` represent after execution?
```
someList = []
foreach X in topChem {
foreach Y in topPhy {
if (X.SeqNo == Y.SeqNo and X.Mathematics > 75) {
someList = someList ++ [X.Name]
}
}
}
```