Today in lab please finish the problem 5.8 we discussed in lecture. 

Just make sure it works and ask us to help you if it does not. 

When you're done provide a different scramble procedure: 

  if the initial word is something like watermelon

  the scrambled word should be a rearrangement of its letters

  so   watermelon 
       aeelmnortw
       wtronmleea
       wltronmaee
       nwatroemle
       ewmaortlen
       lweortmnae
       meaonletwr
       mrtwoeanle
       eaeowmrntl

are all valid rearrangements (all the letters, in some order). 

Example of running Exercise with the new scramble procedure:

> java Exercise what do you think I wrote here
athw od yuo knith I tewor here 
> java Exercise what do you think I wrote here
hwta od yuo htikn I oertw ehre 
> java Exercise what do you think I wrote here
htwa do oyu nkthi I teowr rhee 
> java Exercise what do you think I wrote here
waht od yuo ntkih I rteow reeh 
> java Exercise what do you think I wrote here
ahwt od uoy hkint I rwoet rehe 
> java Exercise what do you think I wrote here
what do uyo ktinh I rotwe hree 


I may have just named this method:

 public static String scbrlmae(String word) { ... } 

--