Rebecca, is there already data in the info table. If so, what they posted will not work, it will add all new records for those in the profile table.
What you need is there to be a link between the two tables so that you can perform an Update statement. If there is no link, then you won't be able to do a join that will create the data the way you would like it.
Julian is pretty close, but made it an insert statement instead of an update statement.
I haven't written Oracle SQL in about 5 months, so I don't remember if you can set two columns like that or if you need the subquery twice, once for each field.
Here's the other way just in case, but it would take longer.
Mark