Hello, so I currently have a code snippet that looks like this inside start routine (There is also a textbox that just waits for 5 seconds):
finalNumber = 1
for i in [0,1,2,3]:
testCase = 32
finalNumber = finalNumber + i
This works completely fine locally, but online it throws an error. Do I have to go into the javascript side and set the scope for testCase?