Answer:
Step-by-step explanation:
To solve this problem we are going to set Python as the language.
books = ["a", "b", "c", ... , "z"]
selection = list(3) #here we set a list of dimension 3 as 3 are supposed to be selected
for book in books: #here we parse into the books list
If book in selection: continue #in order to obtain different books, if the book #already in selection list, then we jump
selection.append(random.choice(books)) #if not, we add the book to #selection
print(selection)