IndexError: list index out of range on line 94 in main.py code example
Example: python list index out of range
#this will result in an IndexError
arr = ['item',1,None,'hi']
error = arr[10]
#this will result in an IndexError
arr = ['item',1,None,'hi']
error = arr[10]