In the above exercise, I was told to create a data list like so:
<datalist id="sauces">
<option value="ketchup">Ketchup</option>
<option value="mayo">Mayo</option>
<option value="bbq">BBQ</option>
</datalist>
In the picture example that the exercise provides, none of the choices in the data list how up twice. However, the choices in my data list do show up twice when my code is rendered. Why does this happen and how can I fix it?
The browser that I’m using is Google Chrome is that has anything to do with it. Thanks in advance for any help!