Dynamic multi XY points number

Hi,
I have a multi XY that I want to fed using an external .txt file containing 2D array
I'm able to import the txt file, and read data in.
I'm able to set the number of points depending on the length of the array.

#{@{variable_arrayTest2D}[@{fader_arrayTest2DColomnun}].length}

But I need to feed the points arguments with a something that look like that to change the name of the bubbles :

[
"@{script_multiName1}",
"@{script_multiName2}",
"@{script_multiName3}",
"@{script_multiName4}",
"@{script_multiName5}",
"@{script_multiName6}",
"@{script_multiName7}",
"@{script_multiName8}",
"@{script_multiName9}",
"@{script_multiName10}",
"@{script_multiName11}",
"@{script_multiName12}",
"@{script_multiName13}",
"@{script_multiName14}",
"@{script_multiName15}",
"@{script_multiName16}",
"@{script_multiName17}",
"@{script_multiName18}",
"@{script_multiName19}",
"@{script_multiName20}"
]
Number of script depending on the array length.
Is that possible ?

You should really consider writing a custom module, what you're trying to do here looks much more complicated than simply reading the file from a custom module and editing the session on the fly with a proper code written in a single place.

I'm agree with you, I think this is my current limitation of what I'm able to do in coding.
I need to step up my knowledge. But at this time I need a break too ahah