from random import randint
for i in range(5):
FN = (input("What is your name?"))
firstletter = FN[:1]
SN = []
first3letters = SN[:3]
x = str(len(SN))
sentence = str(randint(0,9))+(first3letters.lower())+(firstletter.upper()+(x))
print(sentence)
I need to make an array, which will be printed and consist of the 5 usernames which get generated with this code. How would I do that?