Which of the following assigns the fifth character in the word variable to the letter variable?
a. letter $=$ word. $\operatorname{substr}(4)$;
b. 1etter = word. $\operatorname{substr}(4,1)$;
c. letter $=$ word(5). substring;
d. 1etter = substring(word, 5);