html `
<h2>Top 30 Locations</h2>
<div>${Object.keys(locationData)
.map(locationType => textCloud(locationData, locationType))
.sort((a, b) => b.count - a.count)
.slice(0, 30)
.map(c => c.html)}
...
</div>
<h3>Total Crimes: ${Object.keys(locationData)
.map(key => locationData[key].length)
.reduce((total, num) => total + num)
.toLocaleString()}
</h3>
<hr />
`