Given two vectors; one for a character location, and one for another object's location what could be used to find the mid point?

Any ideas on what the answer could be?

Pseudocode:

CharacterLocation+(ObjectLocation-CharacterLocation)/2

Maybe I don’t quite understand the question but ((Vector1 + Vector2) /2) = The middle of the 2 Vectors. right?

Obviously the better solution, less operations…