Add the first for loop, with i as the counter variable and the range() function at the end.
i
range()
Perfect! This loop will decide how many times the next for loop needs to execute.
Make sure to add for i in range(): to your code.
for i in range():