I execute this code on thearray p1 where every entry in the array is unique, that is, no numbers in the array are the same: print(p1[4,6:]) print (p1[-3:-1,9]) and this prints to the screen: [6 4 15 10 9] [10 14] how many rows and columns are in p1