SFT - Stands for "Scratch Feature Tests" This test is to check if using a pre-made list and changing the values within that is faster, or if deleting the entire list and re-adding the values is better
Results: Emptying the list is better This one came as a surprise, normally in programming, you would want to pre-allocate the memory, and just modify that section of memory. But for some reason, in scratch, it is easier to disregard the previous section and re-create all of it.