Variable help!

Ok I have defined two variables,

example

x = 2;
y = 3;

I then want to load both of these variables so that they will look like this

(2/3)

N.B.: / is just a separator not a divide operator!

I want to load these two vars into a dynamic text filed called loadText:

_root.loadText = “WHAT DO I PUT HERE”;

THANKS

_root.loadText = x+"/"+y;

loadtext = x+"/"+y

should work…