##Question 1

##creates the array, inputted random values
arr = [69, 420, 999, 37]
##sorts the array
arr.sort()
##prints the sorted array
print(arr)

##Question 2
## Benefits: less riskier, less costly, repeatable
## Negatives: Makes guesses based on other answers, unoriginal, could be less accurate

##Question 3
##Tiktok uses an algorithm where they display the most liked videos when you first log in, and then use what you liked or favorited to display future videos, grabbing your attention more



[37, 69, 420, 999]