This is the problem:
Function Name: randomSentenceRedux
Parameters:
1.string – a string object to manipulate
Return Value:
A transformed string where the words from the original sentence are in a random order.
Test Case(s):
>>>print randomSentenceRedux("My name is Sally Sue") 
My is name Sue Sally 
>>>print randomSentenceRedux("hello") 
hello
>>>print randomSentenceRedux("Don't scream at me!") 
Don't at scream me! 
>>>
Description: Write a function to randomize the order of the words in the input string string and return the resulting string. You may assume words are separated by a single space. You MAY NOT use the shuffle function found in python's random module