print "\nConcatenation and join (without parens)- NOT OK\n"; $cols = '[' . join('],[', @array . ']'); #### $cols = join ',', map { "[$_]" } @array;