we use these code to traverse the names List in chapter, but, the property 'pos' will alaways less than 'listSize', so there will be a endless loop.. ``` javascript for(names.front(); names.currPos() < names.length(); names.next()) { print(names. getElement()); } ```