const renderTags = () => {
elResult.innerHTML = '';
tags.forEach((tag) => {
const input = document.createElement('input');
input.value = `${tag}`;
input.readOnly = "readOnly";
const button = document.createElement('button');
button.innerHTML="X";
elResult.appendChild(input);
elResult.appendChild(button);
})
}