Python Code Challenge

192 - What is wrong with the code below?
def count_vowels(s):
    vowels = "aeiou"
    count = 0
    if char in vowels:
        for char in s:
            count += 1
    return count

print(count_vowels("hello"))