1 2array[1..4] of string: v; 3string: s = join(", ", v); 4v = [show(10), show(5.3), "A String", "foo" ++ "bar"]; 5solve satisfy; 6output [s];