rows.sort(function(a, b) {
    var first = +a[1];
    var second = +b[1];
    if (first > second) return -1;
    if (first < second) return 1;