This happens because:
1- You defined the `numbers` parameter as a single integer, and the problem is that you can't iterate through a single integer, so the program expects you to define the parameter as a sequence, like: [1, 2, 3].
2- You wrote `For` instead of `for`, which may result in an error.