i have to remove buttons here and i can't access them each, i tried all still the same. The HTML CODE
<div class="grocery_list_items">
<div class="grocery_items">
<div class="count">1.</div>
<div class="item_name">Short Wears</div>
<div class="remove_item_button" id="remove_btn">Remove</div>
</div>
<div class="grocery_items">
<div class="count">1.</div>
<div class="item_name">Short Wears</div>
<div class="remove_item_button" id="remove_btn">Remove</div>
</div>
</div>
AND the javascript code to access the buttons
let remove_button = document.getElementById("remove_btn");
console.log(remove_button)
the console is only showing a result for one button instead of two, how do i solve this?