Given a string (strWord) entered into an InputBox, what statement will always return the first letter of that string?
1. chrFirstLetter = chrFirstLetter.Chars(0)2. chrFirstLetter = strWord.Chars(0)3. chrFirstLetter = strWord.Chars = 04. chrFirstLetter = strWord.Chars(1)