C# String Arrays
https://code.sololearn.com/cJcj2318Tgz5/?ref=app My code passed 4 out of 5 tests. What is wrong? Task: You are creating an authentication system. The password shouldn't contain any of these symbols: char[] notAllowedSymbols = { '!', '#', '$', '%', '&', '(', ')', '*', ',', '+', '-' }; Write a program to take the password as input and output "Invalid", if it contains any disallowed symbols. If the password requirement is satisfied, program shouldn't output anything. Sample Input yl1893!dm$ Sample Output Invalid Hint The message should be output only once regardless of how many disallowed symbols the password contains. Use the for/foreach loop to iterate through the array of disallowed symbols and check the condition, then use the break keyword to stop the iteration if the condition is evaluated as true.