This exercise will test that you know how to use sequences to combine existing Actions to create new Actions.
This challenge involves creating multiple independent services and joining them together in a sequence.
Complete the following tasks to finish the exercise.
"Hello my name is James" --> ["Hello", "my", "name", "is", "James"]
["Hello", "my", "name", "is", "James"] --> ["James", "is", "name", "my", "Hello"]
["James", "is", "name", "my", "Hello"] --> "James is name my Hello"
Learn more about sequences in the documentation. https://github.com/openwhisk/openwhisk/blob/master/docs/actions.md#creating-action-sequences
OpenWhisk comes with numerous built-in Actions that you might be able to use rather than creating new Actions. https://github.com/openwhisk/openwhisk/blob/master/docs/packages.md
You might want to look at the /whisk.system/utils package.
» Need help with the task? openwhisk-workshop more
» To verify your work, run: openwhisk-workshop verify