def tripPlanner(trip):    vowels = “aeiou”    i = 1    for l…

def tripPlanner(trip):    vowels = “aeiou”    i = 1    for letter in trip:       if i % 4 == 0:            return “Time to hit the road…”        if letter not in vowels:            print(“How far do we go?”) else:            print(“Stay home”)        i += 1print(tripPlanner(“Oregon”))