Which of the following statements correctly adds a label to the first row and second column of a GridPane object?
1) gridPane.add(label, 0, 1) ;
2) gridPane.add(label, 1, 0) ;
3) gridPane.add(label, 1, 1) ;
4) gridPane.add(label, 0, 0) ;