LastValue of LastName

@Ujjwol_rowe -

Try below -

{
    "type": "static",
    "attributes": {
        "lastName":{
        "type": "identityAttribute",
        "attributes": {
            "name": "lastname"
        }
    },
    "FirstName":{
        "type": "identityAttribute",
        "attributes": {
            "name": "firstname"
        }
    },
        "value": "#set($lastParts = $lastName.split(' '))#set($lastValue = $lastParts[$lastParts.size() - 1])$FirstName.$lastValue"
    },
    "name": "Community-FetchLastPartOfLastName"
}

Cheers!!!