Just use the Resource Editor to create a Resource Bank that only contains your strings. You can then retrieve each string using Resource$(StringNumber).
There are limitations of a maximum 256 strings and (not sure) but I think I recall a max of 255 characters.
If your program is already using a Resource Bank for Interface instructions, simply load your bank into a spare slot and swap banks when you need to reference your strings.
If you need more than the limits allow, you'll have to use SamuraiCrow's method instead. Consider writing a simple program to create your bank of strings. For the fastest access to the strings, try using an offset table at the start of the bank where each entry points to the start of a string, and the string is in the format length/string. Then to get at a particular string, use its number to get the offset, use that offset to get an address pointer to the start of the string, Peek, Deek or Leek the string length (which one depends on what format you're using for string storage) then Peek$() the string you want.
Sent from my Lumia 640 using Tapatalk