Let `Z` be a row in the Words table such that `Z.Word = "mississippi"`. What will be the value of `alphaDict["s"]` at the end of the execution of the following pseudocode?
```
alphaDict = {'i': 3, 'c': 1, 'a': 1, 's': 1}
alphaDict = updateDict(Z, alphaDict)
Procedure updateDict(Z, Dict)
i = 1
while(i <= Z.LetterCount) {
x = ith letter of Z.Word
if(not isKey(Dict, x)) {
Dict[x] = 1
}
else {
Dict[x] = Dict[x] + 2
}
i = i + 1
}
return(Dict)
End updateDict
```