Solution 1: Using List.take and List.drop
List.take
List.drop
split n list = (List.take n list, List.drop n list)