curriculum/challenges/english/blocks/debug-c-sharp-console-applications/647e22a08acb466c97ccbef5.md
This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge:
Complete the <a href="https://learn.microsoft.com/training/modules/implement-exception-handling-c-sharp/" target="_blank" rel="noreferrer">Implement Exception Handling in C# Console Applications</a> module on Microsoft Learn. Then, answer the question below.
When is an ArrayTypeMismatchException exception thrown?
An ArrayTypeMismatchException exception is thrown when an attempt is made to store a value of one type in an array of another type.
An ArrayTypeMismatchException exception is thrown when attempting to access a member on a type whose value is null.
An ArrayTypeMismatchException exception is thrown when an attempt is made to index an array outside the bounds of the array.
1