How do you hold several different variables in one variable in scar
since that's probably confusing wording here's examples from other languages:
Python (suppose it would be a list):
list = ['1st Variable','2nd Variable','3rd Variable','4th Variable']
C++ (array or vector)
int array [4] = {1,2,3,4};