abstract class Letter with child classes A, B, and C.Letter myLetter which is of unknown type (can be any of A, B, or C, the only guarantee is it's a child of Letter), how can I create a new instance of whatever class myLetter is? myLetter is and store it in another variable (say myLetter2)