JSFiddle - React, Tailwind, and code Playground
HTML
<h1>
hola
</h1>
JavaScript
console.log('hello')
var items = [
{id:1, title: 'ed'},
{id:2, title: 'ere'},
{id:3, title: 'csd'},
]
var item = items[Math.floor(Math.random() * items.length)];
items.splice(0, 1)
alert(items[0].title)