Write a lambda expression that accepts seven (!) string arguments and returns a string in uppercase concatenated from all of them (in the order of arguments).
Solution format. Submit your lambda expression with seven arguments in any valid format with ; at the end.
Examples (only with two args): (x, y) -> x + y; (x, y) -> { return x + y; };