how would I write a function in scheme that takes a nested list as an argument and returns a list of lists. For example if I gave it ( ((1 2 3) (2 3 4) (3 4 5)) (4 5 6) (5 6 7) (8 9 10)) ) it would return ( (1 2 3) (2 3 4) (3 4 5) (4 5 6) (5 6 7) (8 9 10) )