Hi Friends!!!

I'm newbe, and I'm trying to pass some element since a string to a vector. And I don't know if I using insertElementAt correctly. You can see de code:

s is a string
vc is a vector

for (x= 0; x <n; x++) {
c = s.codePointAt(x);
vc.insertElementAt(c,x);
}

Thanks!!!