def checkio(text, words):
count = 0
text = text.lower()
for word in words:
if word in text:
count += 1
return count
Above is my code and I don't get any feedback to understand where is my mistake. When I click on "Run & Check" the "Check results" panel remains blank...