So, I simply want to dynamically change my what label is currently edited through an array, to achieve as little code as possible.
This is what it looks like right now:
string[] poängLabels = new string[10];
for (int i = 3; i <= 9; i++)
{
poängLabels[i] = ("label{0}.Text" + i);
}