The given pseudocode is executed on the Words dataset. `C` stores the number of nouns which have at least one verb adjacent to it. Choose the correct code fragment to complete the pseudocode.
```
A = []
B = []
C = 0
while (Table 1 has more rows) {
Read the first row X in Table 1
********************
* Fill the code *
********************
Move X to Table 2
}
foreach Y in B {
if (member(A, Y - 1) or member(A, Y + 1)) {
C = C + 1
}
}
```