{
const container = html`<svg width="300" height="300" style="fill: none; stroke: gold;"></svg>`;
const data = [8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120];
const circles = data.map(radius => svg`<circle stroke=${'#'+Math.floor(Math.random()*16777215).toString(16)} cx=${radius} cy=${radius} r="${radius}"></circle>`)
circles.forEach(circle => container.appendChild(circle));
return container
}