I'm trying to select several values of <select>
<select>
<option value="0">Seleccionar</option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="vw">VW</option>
<option value="audi">Audi</option>
</select>
Example: when choosing Volvo I need to save the value in an object and show it the value to know which option I chose, then select in the Audi list and save the information again in the same object where it is the value of Volvo and that the object shows me Volvo and Audi and continue in that way until I no longer need to choose another value from the list.
Example of how the values selected in the list would appear on the screen:
Is this possible with the <select>
object?