Imagine you have a string formatted like this: "Applejack=A.J.+Applecar,Lemon+Vodka=AlfieCocktail+ Sunset + SexOnTheBeach"
Your task is to write Javascript code using .split() to parse long strings (up to 100000 characters) and separate them into two arrays, with one containing the keys and the other containing the values. The output should be structured as follows:
key = ["Applejack", "Lemon+Vodka"]
values = ["A.J+Applecar","AlfieCocktail+Sunset+SexOnTheBeach"]