I'm completely new to coding and I'm attempting to create a bingo board that shuffles when a button is clicked using HTML, CSS, and Javascript. Right now, I have a CSS grid that arranges text div items in a 5x5 consecutive order. Is there a method to randomize the order of these div elements?
Example:
<div class="grid-item"> 1 </div>
<div class="grid-item"> 2 </div>
<div class="grid-item"> 3 </div>
<div class="grid-item"> 4 </div>
<div class="grid-item"> 5 </div>