Multitouch for ipad

I have created one game for ipad.
currently this is working on single touched and i want to make it multitouch

description about my game----
i have one object(player) which is moving up and down so when i touched on screen it is moving up and down.
but the issue is i want to pick one more object simultaneously while player is already picked (clicked) i.e i want two objects to pick on two different touches on the same screen at a same time.

so how to do this?

please can anyone help me with the C# script

Input.GetTouch(0)- first finger
Input.GetTouch(1)-second finger
Input.GetTouch(2)-third finger … etc.

For Example:

void Update()
{
if(Input.touchCount ==2)
{
Touch finger1 = Input.GetTouch(0);
Touch finger2= Input.GetTouch(1);
if(finger1.phase == TouchPhase.Moved && finger2.phase == TouchPhase.Moved)
{
Debug.Log("Hello");
}
}
}