What is the output of this code? word = 'bananaaa' count = 0 for letter in word: if letter == 'a': count += 1 print(count)