import ballerina/io; public function main() { int[3] a = [1, 2, 3]; int[3] b = [4, 5, 6]; io:println([...a, ...b]); }