Given two strings, repeatedly cycle through all of the letters in the first string until it is the same length as the second string.
stringCycling("abc", "hello") ➞ "abcab"
stringCycling("programming", "edabit") ➞ "progra"
stringCycling("ha", "good morning") ➞ "hahahahahaha"All tests will include valid strings.