Moving an object to another object code help

Hey I need some help with this sample Unity script, I know nothing about coding and just need an object to move over to another object, except I don’t know what to add to this script:

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
	public Transform target; 
	public float speed; 
	void Update() {
		float step = speed * Time.deltaTime;
		transform.position = Vector3.MoveTowards(transform.position, target.position, step);
	}
}

Any help would be appreciated thanks.

Alright so I figured it out myself and made a working script that moves an object to another object.

(Unfortunately I had to do it in java)

#pragma strict
var target: Transform;
var speed: float;

function Start () {

}


	
	
	
	function Update () {
		// The step size is equal to speed times frame time.
		var step = speed * Time.deltaTime;
		
		// Move our position a step closer to the target.
		transform.position = Vector3.MoveTowards(transform.position, target.position, step);
	}