//Example of arrays //Define the values explicitly myArrayOne = newArray(10, 5, 15, 2, 1.12345); print(myArrayOne[1]); //Define the array size and then fill it n=5; myArrayTwo= newArray(n); myArrayTwo[0]=10; myArrayTwo[1]=5; myArrayTwo[2]=15; myArrayTwo[3]=2; myArrayTwo[4]=1.12345; print(myArrayTwo[1]); //Or could of done it with seperate variables value0=10; value1=5; value2=15; value3=2; value4=1.12345; print(value1);