Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Make an Account (JAVASCRIPT) Create three arrays that can each store 3 values A String array that will the students' names An int array that
Make an Account (JAVASCRIPT) Create three arrays that can each store 3 values A String array that will the students' names An int array that will store student ID numbers A String array that will contain student email addresses 2. Write a for-loop that asks the user to enter in 5 student names (first and last name) and store those values in the first array in all uppercase. 3. Write a for-loop to generate random student ID numbers from 111111 to 999999 and store each of them in your ID numbers array. 4. Write a for-loop to generate student email addresses in the format (first inital)+(last name)+(last 3 digits of student ID number)@gmail.com. identify the last name, use indexOf and substring. To grab the last three digits of the ID number, use modulus. 5. Write a method to print out all the student names, ID numbers, and email addresses in parallel.||
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started