var lines = Object.keys(count)
      .sort((a, b) => count[b] - count[a])
      .map(function (k) {
        return k + ',' + count[k];
      });