You have a table named 'Employees' with columns 'EmployeeID', 'FirstName', 'LastName', and 'Salary'. You need to categorize employees based on their salary. Write a SQL query using CASE statement to display 'High Earner' if the salary is above 50000, 'Average Earner' if the salary is between 30000 and 50000, and 'Low Earner' otherwise.