textList = ["Teksti1", "Teksti2", "Teksti3", "Teksti4", "Teksti5"]
index = int(input("Mihin kohtaa listaa haluat syöttää tekstin? "))
newText = (input("Syötä teksti: "))
textList.insert(index, newText)
print(textList)