How could i find the biggest variable out of lots of them
i have a few variables and a finalvar

name1
name2
name3
name4
finalvar

each has a value (differs)

what i want is to get the biggest
EG

name1 = 10
name2 = 33
name3 = 21
name4 = 100
finalvar = name4

i would want name 4 (the biggest) to become the value of finalvar

how would i do this :S
TYVM for help