HTML document Console in the Inspector > data.shift(); //shift gives me the first value in the array data.sort(d3.descending); //get data by descending d3.min(data); d3.extent(data); //extent gives me both minimum and maximum value d3.shuffle(data); //it shuffles around the values in array, random order < [50, 30, 10, 20, 40] (5)