Working with Checkboxes, Radio Buttons, and Dropdowns

What feature of select elements does this code handle?
select.addEventListener('change', function(e) {
  const options = Array.from(e.target.selectedOptions);
  const values = options.map(opt => opt.value);
});
Next Question (8/22)