chart = {
const svg = d3.select(DOM.svg(width, height));
svg.append("g").call(xAxis)
svg.append("g").call(yAxis)
svg.append("g")
.call(setTitle, "Scatter Chart is Good")
const dots = svg.append("g")
.call(addCircles, groceries.slice(0,15), mint, 5)
const dots2 = svg.append("g")
.call(addCircles, groceries.slice(16,50), "orange", 5)
svg.append("path")
.call(addLine, groceries, mint, 3)
return svg.node()
}