> Note that array references are rarely used in real life, as there is no > benefit over sequences.
this is not true, array references have the benefit that their size is known at compile time. It makes the intention of the code clearer and eliminates potential errors such as forgetting to initalise the seq to the right size.
