Given a string like alpha = “abcdef” (or any other string wi…

Given a string like alpha = “abcdef” (or any other string with at least three characters), create a new string. The new string is identical to the alpha string except the first two characters of the alpha string are removed from the front of the string and placed at the end of the string. You may find a loop, subscript notation, and string concatenation helpful. Whatever you decide, use only concepts taught in the course. You are not required to write a main function. Example: alpha = “abcdef”newString = cdefab” Your code should work with any string with 3 or more letters.