When you say setting up and array do you mean declaring it or clearing its contents?
You don't need to declare any variables in an algorithm thoguh it may be good to note the structure such as an array of records just so that the marker knows where you're heading.
For clearing an array you would need to:
BEGIN
i = 1
FOR i to 100
practice(i) = " "
NEXT i
END
i'm pretty sure, if its wrong let me know
it got rid of the indenting but you get the idea