To add your strings via the DATA command:

DATA $00,"Switch01",0

Example of reading the above and displaying it on an lcd:

For CounterA = 0 to 16
Read CounterA,value
If CounterA=0 then goto Main
LCDOUT value
Next CounterA

This should be enough to get you started.