I have string values seperately and want them to insert into an array. For example
var Lin1="te1";
var Lin2="te2";
I want to insert this into an arry value and want them to use it by array index. ie. for array[0]="te1", array[1]="te2"..
How can we achieve this? Thanks in advance...