And a good example of possibly rethinking variable names. If you had named the variables Kget1 to Kget16 or GetK1 to GetK16 you could reference them in the array statement as
array k1 Kget1-Kget16; or Array k1 GetK1-GetK16;
or if that is all of the "get" variables
array k1 Kget: ; or array k1 GetK: ;
... View more