How to update BuddyPress xprofile fields programmatically? [closed]

This is how I would update a field named ‘Address’:

function updateAddress() {

    global $current_user;
    get_currentuserinfo();

    $newAddress="123 New Street";

    xprofile_set_field_data('Address', $current_user->id,  $newAddress);

}