If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.
The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
The Ternary operator is ? :
and it RETURNS a value.
The Ternary is used like this
condition ? return_value_if_condition_is_true : return_value_if_condition_is_false;
Now, check the example code in the task 70, and you will observe that the return value of the Ternary operator was assigned to a variable like this const variable = condition ? return_value_if_condition_is_true : return_value_if_condition_is_false;
In these examples, the variable(s) were declared, and the return value(s) were assigned to them on the same line of code. However in the task you are given, the variables you expected to use were declared earlier on. So, you just have to assign the return values to them.
This the concept you are expected to apply in your solution.