You want to convert user input into plural form by adding an s.
TOOLS=${1}
echo "________s are very useful!"
Fill in the blanks to include user input using the variable — TOOLS.
Use
${} to perform string interpolation using user input.