Preview:
#include <iostream>

using namespace std;

int main()
{
    string products[] = {"Item 1", "Item 2", "Item3"};
    string sizes[] = {"Small", "Large", "X-Large"};
    
    for (int i = 0; i < 3; i++)
    {
        cout << "Product Name: \n";
        cout << products[i] << "\n";
        cout << "Sizes: \n";
        for(int j = 0; j < 3; j++)
        {
            cout << sizes[j];
            if(j < 2)
            {
                cout << ", ";
            }
        }
        cout << "\n";
        cout << "=====================\n";
    }
    return 0;
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter