For future reference, please post code snippets like this:
[xcode=c#]your code here[/xcode]
or, if you need to add extra formatting, e.g. bold or colour, like this:
[code]your code here[/code]
As for the issue, the first thing to note is that you need to do the same thing multiple times so what code construct do you think you would use for that? If you said "a loop" then you get a gold star. If not then you need to spend more time reading the material you've been given. As for what type of loop, there's no list to enumerate so a 'foreach' loop is out and you don't know how many times you need to loop so a 'for' loop is out too.
That leaves a 'do' loop or a 'while' loop. I'll leave it to you to decide which one but the main difference between them is that a 'do' loop tests na exit condition after executing the body, which means that at least one iteration is always going to be executed, and a 'while' loop tests an exit condition before executing the body.