module.exports = function(svg, getRandom) {
  var width = svg.attr('width');
  var height = svg.attr('height');
  // Find out how many circles.
  var numCirlces = getRandom(Math.floor(width / 48)) + 1;