C# | How do I move an object a number of units?

Right, so I am familiar with transform.Translate but I want to be able to move an object up by 5 units, how do I do that in a script?

transform.Translate(Vector3.up * 5);

This will instantly move something 5 units up. For other directions, change the Vector part. For other lengths change the number.