Complete the code to declare the app's name shown in the App Store.
let appName = "[1]"
The app name must be a simple string without special characters for App Store display.
Complete the code to set the app's description for the App Store listing.
let appDescription = "[1]"
The app description should clearly explain what the app does to attract users.
Fix the error in the code to correctly set the app's version number for App Store display.
let appVersion = [1]The version number must be a string in quotes to be valid in Swift.
Fill both blanks to create a dictionary with app metadata for App Store submission.
let appMetadata = ["name": [1], "version": [2]]
Both name and version values must be strings in quotes for the dictionary.
Fill all three blanks to define a struct representing the app info shown on the App Store.
struct AppInfo {
var [1]: String
var [2]: String
var [3]: String
}The struct should have properties for name, description, and version as strings.