Solution 1: Using List.take and List.drop

split n list = (List.take n list, List.drop n list)