Is it possible to simplify the codes below by using while loop?
Match firstMatch1 = matches1[0];
Match firstMatch2 = matches1[1];
Match firstMatch3 = matches1[2];
Match firstMatch4 = matches1[3];
Match firstMatch5 = matches1[4];
Match firstMatch6 = matches1[5];
Match firstMatch7 = matches1[6];
Match firstMatch8 = matches1[7];
Match firstMatch9 = matches1[8];
Match firstMatch10 = matches1[9];`
E.g.
int i =0
while (i<54)
{
Match firstMatch1 = matches1[i]
...
i++;
}