string salsa[] = {"mild", "medium", "sweet", "hot", "zesty"};
int jars[5];
int total_sales = 0;
int index, i;
cout << "Enter the number of jars sold for the mild salsa: ";
cin>>jars[0]; // jars[0] has the same _______ of "mild" in the array salsa
cout << "Enter the number of jars sold for the medium salsa: ";
cin>>jars[1];
cout << "Enter the number of jars sold for the sweet salsa: ";
cin>>jars[2];
cout << "Enter the number of jars sold for the hot salsa: ";
cin>>jars[3];
cout << "Enter the number of jars sold for the zesty salsa: ";
cin>>jars[4];