I am trying do a grouping for a football tournament, but I don't know how to copy from the main array into sub arrays.
string [] groupings = {Arsenal, Chelsea, Barcelona, Real Madrid, Valencia, Juventus, Manchester United, Liverpool}
I want it in such a way that it will pick the first four and put in group one, and the last four in another group. e.g
string [] group 1={ Arsenal, Chelsea, Barcelona, Real Madrid }
String [] group 2={Valencia, Juventus, Manchester United, Liverpool}
Please can anyone help me with this I am still new to programming.