A Fibonacci string is a precedence of the Fibonacci series. It works with any two characters of the English alphabet (as opposed to the numbers 0 and 1 in the Fibonacci series) as its initial items and concatenates them together as it progresses similarly to that of the Fibonacci series.
generateString(3, ["j", "h"]) ➞ "j, h, hj"
generateString(5, ["e", "a"]) ➞ "e, a, ae, aea, aeaae"
generateString(6, ["n", "k"]) ➞ "n, k, kn, knk, knkkn, knkknknk"
generateString(1, ["f", "g"]) ➞ "invalid"
// return "invalid" if n is less than 2