Hello! I have a combo-box in a form that allows users to choose one or more options from a selection of items. Some of the items in the combo-box are: "January", "February", "March", "April", and so on. The items in the list are pulled from a Lookup column in a SharePoint list ('review materials'), under the "Title" column.

I have successfully used code to add whatever item the user selects to a collection, and pull in the corresponding email address to the same collection table but in the column to the right. The following is an example if the user selects "January" and "February"

My application is an "Approvals" application, where all approvals are done in a Gallery (on the right side of the screen of the same screen as the details section of the submitted form). Each item selected in my combo-box is what is going to be approved. How would I display each item selected in my combo-box in separate sections of my Gallery?
For example: If the user selects: "January" , "February", "March" in my combo-box of the form, it should list out each selection separately in the Gallery. But currently, when I use this code: 'reviewComboBox.Selected.Value' (reviewComboBox is the name of my combo-box, and the Display Name in my form is "Review Material") in the 'Text' property, it shows this in my Gallery:

The first item chosen from the combo-box is shown 3 times, instead of each of the 3 items chosen from the combo-box shown once. I tried using the .SelectedItems code but it doesn't work as we need a text output, not a table.
Thank you!!