NE-2.process arguments favorite topic exercise
Create an external json file and name it students.json. This json file should be an array of objects. Each object should contain information about each participant of the class, and more specifically a field with the firstName of the participant, his nationality and his favorite tech subject. The subject could be anything like 'React', 'Node' or more general like 'JavaScript', 'Ruby' and more.
Inside the same folder create another javascript file that will be executed from node.js terminal.
Inside your script file, import at the first line the json file by using the require method you have previously learned.
Write a script that reads the process argument values, this should be the name of the participant, and the script should print to the console the favorite topic of the selected participant.
If the name that was provided as a process argument is not included in any of the objects inside the JSON array, the script should print to the console that 'There is no participant with such name'.
Bonus: Try to find also participants regardless of if you have passed the name in argument UPPERCASE, lowercase or camelCase.