What's the easiest way to duplicate elements in a list
myListA = {"y"};
//Result I need:
myList = {"y", "y"};
// This should work with an arbitrary number of elements in the list
myListB = {"y1", "y2", "y3"};
//Results
myList = {"y1", "y2", "y3","y1", "y2", "y3"};