Selecting Rows. Which of the following lines of code will create newTable by selecting the first 4 rows from oldTable
newTable = oldTable.take(make_array(0,1,2,3))
newTable = oldTable.take(np.arange(0,3))
newTable = oldTable.column.item(np.arange(1,4))
newTable = oldTable.column.item(make_array(0, 1, 2))
newTable = oldTable.take(make_array(1,2,3,4))
newTable = oldTable.take(np.arange(0,4))