Question: How do you remove null elements from a listlist?

I need help trying to remove some null elements from a listlist, that i converted from an Array. 

Example: I have a list of coordinates r:=[[1,2],[1,3]], which i converted to an array, and nulled the first element.

r:=convert(r,Array): 
r[1]:=NULL:
r:=convert(r,listlist):

I now have r=[[],[1,3]] after converting it back to a listlist. How do i remove the first element, which is an empty entry, such that i end up with r=[[1,3]]

Thanks 

Please Wait...