int *random = new int [4];
1234567
int * createrandomcolors() { int *random = new int [4]; for (short int m =0 ; m < 4; m++){ random[m] = rand() % 6 + 1; } return random; }