Which portion of the code will execute correctly? fruit = 'banana' for letter in fruit: print(letter) index = 0 while index < len(fruit): letter = fruit[index] print(letter) index = index + 1