Create thing based on a combination of list fields

Trying to build a program to make sku creation easier. Basic database stuff, like create a vendor database, so you only have to enter vendor information once and not in every sku.

There is a step where I’d rather enter in the options available, and have a sku created for every variation, rather than creating a step for each variation manually.
Example: 2 options selected - size and color
Size:

  • Small
  • Medium
  • Large
    Color:
  • Red
  • Blue
  • Green

The output would be:
Small Red
Small Blue
Small Green
Medium Red
Medium Blue
Etc…

After learning that, I’d like it to display in a repeating group after the options are selected and allow the user to delete any combinations that don’t apply.

Anyone like the challenge?