public void bubbleSortKnop_Action(Event evt) {
long startTijd = System.nanoTime();
bubbleSort(getallenRij);
long eindTijd = System.nanoTime();
double tijd = (eindTijd - startTijd)/ NAAR_MS;
vulLijst();
tijdVeld.setDouble(tijd);
} // end of bubbleSortKnop_Action