cpp```
void initializeDeck() {
string colors[] = {"Red", "Green", "Blue", "Yellow"};
string values[] = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "Draw Two", "Skip", "Reverse"};
for (const string &color : colors) {
for (const string &value : values) {
deck.push_back({color, value});
if (value != "0") {
deck.push_back({color, value});
}
}
}
for (int i = 0; i < 4; i++) {
deck.push_back({"Wild", "Wild"});
deck.push_back({"Wild", "Draw Four"});
}
random_shuffle(deck.begin(), deck.end());
}
hey, i have a class assignment where i have to code a game and i chose uno, this part of the code keeps giving me errors, can someone please help me out with this?