Working with Checkboxes, Radio Buttons, and Dropdowns

What's the most reliable way to get additional data attributes from selected options?
select.addEventListener('change', function(e) {
  const selectedOption = e.target.options[e.target.selectedIndex];
  console.log(selectedOption.dataset.info);
});
Next Question (4/22)