chart = {
const width = 1000
const height = 500
const svg = d3.select(DOM.svg(width, height));
const circle = svg.append('circle')
.attr('cx', Math.random() * 900)
.attr('cy', Math.random() * 400)
.attr('r', Math.random() * 80)
.attr('fill', `#${randomColour()}`)
.call(animate)
return svg.node();
}