Huh, but where would you use this?
You need returns in order to do certain things you probably do regularly.
Such as:
findClientByname("Daenth").whatever
findClientByName does a return;
It's like a shortcut.
Would you rather do a for loop in every function you wanna find someone by name or id?
Edit: Also, getRandom(low,high) also uses return. That's how you actually get data out of it.