Concatenate Uppercase Strings into a Word

Given an array of strings, use forEach to append all uppercase characters together into a new word.
Tip: You can compare each string to its .toUpperCase() value to check if it is uppercase.
JavaScript
Console