You could use the list object to add the competitors names, ie:
Code:
1 - Ben
2 - Scott
3 - Michelle
4 - Katy
5 - Mike
6 - Lemon
By having the "Sort" property turned on it will automatically put them in the right order, so that you can simply add the players individually in any order.
Then you have a string that displays:
Code:
List Line Text$( "List", 1)+NewLine$
+List Line Text$( "List", 2)+NewLine$
+List Line Text$( "List", 3)+NewLine$
+List Line Text$( "List", 4)+NewLine$
+List Line Text$( "List", 5)+NewLine$
+List Line Text$( "List", 6)
(Using 1-based index). This is really just "Display Line 1 plus a new line, then display line 2 plus a new line...". You could also use 6 strings if you wanted to.
If you just want their names, and not the numbers then you can use:
Code:
Mid$(List Line Text$( "List", 1), 3, 99) + NewLine$ + ...
(Cuts off the first 3 characters of the line)