frnakieroh8882 frnakieroh8882 Today at 9:33 PM Computers and Technology Answered What will appear in the console if the following code is run?void Start() { StartCoroutine(MyCoroutine()); } private IEnumerator MyCoroutine() { yield return new WaitForSeconds(5); Debug.Log("Test"); StartCoroutine(MyCoroutine()); }