(Pig Latin) Write a script that encodes English language phrases into pig Latin. Pig Latin is a form of coded language often used for amusement. Many variations exist in the methods used to form pig Latin phrases. For simplicity, use the following algo- rithm:
To form a pig Latin phrase from an English language phrase, tokenize the phrase into an array of words using String
method split. To translate each English word into a pig Latin word, place the first letter of the English word at the end of the
word and add the letters “ay.” Thus the word “jump” becomes “umpjay,” the word “the” becomes “hetay,” and the word
“computer” becomes “omputercay.” Blanks between words remain as blanks. Assume the following: The English phrase
consists of words separated by blanks, there are no punctuation marks and all words have two or more letters. Function print-
LatinWord should display each word. Each token (i.e., word in the sentence) is passed to method printLatinWord to print
the pig Latin word. Enable the user to input the sentence through an HTML form. Keep a running display of all the converted sen-
tences in an HTML TEXTAREA.
```
1
2
3
4
5
6
7
8
9
33
34
35
36