What is the output of the following script?  def count_vowel…

What is the output of the following script?  def count_vowels(word):    vowels = “aeiou”    count = 0    for letter in word:        if letter.lower() in vowels:            count += 1    return countword = “hello world”print(count_vowels(word))