Convert Array to String

If I have an array thats like:

var seed : int[] = [1, 2, 3];

How do I make a string out of it like “123”?

You could use ToString:

    var str: String;
    for (var i = 0; i < seed.length; i++){
        str = str + seed*.ToString();*

}

You could use the Join() method of the Array class:

var str = Array(seed).Join("");

I’m not sure this will work but I think you you can just replace int with string…

Instead of using

int

just use

string