In this exercise, you use what you have learned about opening a file and getting input into a program from a file. Study the following code, and then answer Questions 1-3.
$$
\begin{array}{|ll|}
1 & \text { FileOpen(1, myDvdFile.dat, OpenMode.Output) } \\
2 & \text { Dim dvdName As String } \\
3 & \text { Dim dvdPrice As String } \\
4 & \text { Dim dvdShelf As String } \\
5 & \text { Input(1,dvdName) } \\
6 & \text { Input(1,dvdPrice) } \\
7 & \text { Input(1,dvdShe1f) }
\end{array}
$$
There are two errors on line 1. Describe the first error, and explain how to fix it.