Part (a) scrambleWord 5 points Intent: Scramble a word by swapping all letter pairs that begin with A Did you access all letters in word, left to right with no bounds errors? 1 point Did you identify at least one letter pair consisting of "A" followed by a non-"A" letter? 1 point Did you reverse the identified pair in constructing a results string? 1 point Did you construct correct a correct result string? (no point if you swapped letters twice or had a minor bounds error) 1 point Did you return a constructed string? 1 point Part (b) scrambleOrRemove 4 points Intent: Modify list by replacing each word with scrambled version and remove any word unchanged by scrambling Did you access all words in wordList withou a bounds error? 1 point Did you call scrambleWord with a word from the list as a parameter? 1 point Did you identify words unchanged by scrmabling? 1 point On exit, does the list include all and only words that have been changed by scraambling once, in their original relative order? 1 point