Check how the capital increases by displaying the f-string f"year {}: {}" with counter and account between the curly braces.
f"year {}: {}"
counter
account
Make sure to pick print followed by ( and then f"year {counter}: {account}", ).
print
(
f"year {counter}: {account}"
)