Let `Z` be a row in the Words table such that `Z.Word = "reluctant"`. What will be the value of `alphaDict["t"]` at the end of execution of the following pseudocode?
```
alphaDict = {'t': 2, 'c': 1, 'a': 1, 's': 0}
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] + 1
}
i = i + 1
}
return(Dict)
End updateDict
```