array of chores

I am creating a random chore generator. There are two seperate lists of chores, 1 for weekdays and 1 for weekends. I am using a random number generator to determine which chore each person gets but don't want to write an if statement for each chore. How can I put the list of chores into an array so that after the number is generated it will telll the person what they need to do that day? This is what I have so far:

//This program is for helping the kids
//pick a chore daily. It will allways list
//homework as a chore and it will include
//one other random chore.

#include <iostream>
#include <iomanip>
#include <ctime>
#include <cstdlib> // For srand() and rand()

using namespace std;

int main()
{


int decision1, decision2, r;


int weekday_chores;
cout << setw(10) << "------------Welcome to the daily chore generator---------------" << endl << endl;
cout << "Please follow the directions carefully " ;
cout << "to get your daily chores!" << endl << endl;
cout << "First you need to let the system know who you are." << endl << endl << endl;
cout << "Please choose your name from the list below:" << endl << endl;
cout << endl;
cout << setw(10) << "------Name Selection------" << setw(10) << endl << endl;
cout << setw(5) << "Celina" << setw(20) << "1" << endl << endl;
cout << setw(5) << "Charles" << setw(19) << "2" << endl << endl;
cout << setw(5) << "Jordan" << setw(20) << "3" << endl << endl;
cout << setw(5) << "Latricia" << setw(18) << "4" << endl << endl;
cout << setw(5) << "Thomas" << setw(20) << "5" << endl << endl;
cin >> decision1;
cout << "Please choose which day of the week it is " ;
cout << "by selecting the appropriate number." << endl << endl;
cout << endl << endl;
cout << setw(5) << "Sunday" << setw(10) << "1" << endl << endl;
cout << setw(5) << "Monday" << setw(10) << "2" << endl << endl;
cout << setw(5) << "Tuesday" << setw(10) << "3" << endl << endl;
cout << setw(5) << "Wendsday" << setw(10) << "4" << endl << endl;
cout << setw(5) << "Thursday" << setw(10) << "5" << endl << endl;
cout << setw(5) << "Friday" << setw(10) << "6" << endl << endl;
cout << setw(5) << "Saturday" << setw(10) << "7" << endl << endl;
cin >> decision2;

while (decision2 != 1 && decision2 != 7)
{
srand(time(0)); // Initialize random number generator.
r = (rand() % 6) + 1;
}
if

return 0;

}
If you want to print a specific message chosen by a random number, here's an example:
1
2
const char* text{"philosophization", "hostaceae", "mombin", "unstaginess"};
std::cout << text[rand()%4];
Topic archived. No new replies allowed.