Question: Adding an element to a list

I have a list c:= [1,2] and i would like to add a new element to this list so that the result is c:=[1,2,3], how would this be done?

And if this can be done is there a way to specify where in the list the element is added to?

Thanks in advance for any help. 

Please Wait...