While (
[
start_value = 1 ;
stop_value = 17 ;
list_of_values = "1¶2¶3¶4¶5¶6¶7¶8¶9¶10¶11¶12¶13¶14¶15¶16¶17¶18¶19¶20¶21¶22¶23¶24¶25¶26¶27¶28¶29¶30¶31¶32¶33¶34¶35¶36¶37¶38¶38¶239¶40¶41¶42¶43¶44¶45¶46¶47¶48¶49¶50¶51¶52¶53" ;
json = "" ;
get_value = "" ;
Values = "" ;
counter = 0
] ;
counter < stop_value ;
[
get_value = GetValue ( list_of_values ; counter + 1 ) ;
Values = Case ( IsEmpty ( Values ) ; "season/" & get_value ; Values & "," & "season/" & get_value ) ;
counter = counter + 1
] ;
JSONFormatElements ( "{\"values\":\"" & Values & "\",\"next_value\":\"" & get_value + 1 & "\"}" )
)