I'm looking for a way to have a function like RepeatingSum except to combine strings. In my game, we have attack options that can have different effects and characters can have 2 used at once. So I want the characters to be able to use the checkbox in each repeating attack option field to select which ones they will use. I've used the repeatingSum function to add up the attack and damage bonuses, but I don't know how to set it up for text. <input type="number" name="attr_AAOAttackBonus" value= "555" disabled="true"> <input type="hidden" value="Murder Machine" name="attr_ActiveAttackOption"> <input type="number" name="attr_AAODamageBonus" value="444" disabled="true"> <input type="hidden" value="I murdered him Avy." name="attr_ActiveAttackOptionEffects"> <fieldset class="repeating_attackoptions"> <table> <tr> <td><input type="checkbox" name="attr_AttackOptionUsed"></td> <td><input type="text" class="weaponInfo" name="attr_AttackOptionName"></td> <td><input type="number" class="weaponInfo" value=0 name="attr_AttackOptionAttackBonus"></td> <td><input type="number" class="weaponInfo" value=0 name="attr_AttackOptionDamageBonus"></td> </tr> <tr class="label"> <td>use</td> <td>Attack Option</td> <td>Attack Bonus</td> <td>Damage Bonus</td> </tr> <tr> <td colspan=4> <textarea type="text" name="attr_AttackOptionEffects"></textarea> </td> </tr> <tr class='label'> <td></td> <td>Effects</td> </tr> </table> </fieldset> So how could I get "repeatedText" for the selected Names and Effects of the attack options?