The line: n2[i-dec-1] = parseInt(n2[i-dec-1])++;
The error: "invalid left-hand side expression in postfix operation."
solution: n2[i-dec-1] = parseInt(n2[i-dec-1])+1;
I am curious why the postfix has issue with the parseInt value from the array, (which resolves to 0).
ANSWER: turns out that postfix to an integer is not sound. That that process results in an error.