{
const series1 = Array(100)
.fill(0)
.map(y => Math.random() * 100 - Math.random() * 50)
.map((y, x) => ({ x, y }));
const series2 = Array(100)
.fill(0)
.map(y => Math.random() * 100 - Math.random() * 150)
.map((y, x) => ({ x, y }));
const series = ['First', 'Second'];
const data = { values: [series1, series2], series };
return render('scatterplot', data);
}