Write an if/else statement for the following requirements:
- If student gets 80 or higher: console log You did a good job
- If students get 70 or above: console log Keep trying
- If students get 60 or above: console log ehhhh
- If students get 55 or above: console log Not to good
- Any grade lower than 55 is Bad Grade But You'll Get Em Next Time
Write a for loop for the given output:
10, 30, 50, 70, 90
20, 40, 60, 80, 100
- This could be acheived a few ways, be creative.